Style a fieldset with rounded corners using CSS > html

본문 바로가기
사이트 내 전체검색

html

Style a fieldset with rounded corners using CSS

페이지 정보

작성자 서방님 댓글 0건 조회 116회 작성일 13-01-07 14:06

본문

출처 : http://www.webteacher.ws/2010/02/27/style-a-fieldset-with-rounded-corners-using-css/

 

 

The default display for a fieldset is a square cornered border. In certain browsers (Firefox and Safari and perhaps others) you can use CSS to make rounded corners on the border around the fieldset and around the legend.

Look at this simple form:

<form id="example" name="example" method="post" action="send.php">
<fieldset>
<legend>A Fieldset</legend>
<label for="ex1">A text field</label>
<input type="text" name="ex1" id="ex1" />
</fieldset>
</form>

Here’s how that looks in Safari, with no CSS styling.

An unstyled fieldset

I applied these rules to the fieldset selector in the CSS

fieldset {
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
}

Again in Safari, here’s what you see now.

CSS border rules created rounded corners in the fieldset

The property used to create rounded corners is the border property. The rule is repeated three times, a redundancy meant to create the effect in as many browsers as possible. The border-radius rule is CSS3, not yet in standard adoption by all browsers. The webkit-border-radius rule is understood by all webkit browsers such as Safari. The moz-border-radius is understood by all mozilla based browsers such as Firefox.

A border can be added to the legend as well. That element can also display the rounded borders. Here’s the CSS.

legend {
border: solid 1px black;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
}

This is how it displays in Safari.

A border with rounded corners is used on the legend

A couple of changes to show how the legend’s appearance might be improved can be made in the CSS.

legend {
background: #FF9;
border: solid 1px black;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
padding: 6px;
}

Now the legend displays like this.

 

 

The legend with a background color and some padding

댓글목록

등록된 댓글이 없습니다.

Total 323건 9 페이지
게시물 검색

회원로그인

접속자집계

오늘
81
어제
84
최대
1,347
전체
154,452
Latest Crypto Fear & Greed Index

그누보드5
Copyright © 서방님.kr All rights reserved.