■ CSS 테두리 속성(border)을 사용하는 방법을 보여준다.
▶ test.html
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <style> div { margin : 20px; width : 300px; height : 20px; border : thin double #cccc99; padding : 20px; background-color : #ffff99; } #div1 { -webkit-border-radius : 30px; -moz-border-radius : 30px; border-radius : 30px; } #div2 { -webkit-border-top-left-radius : 30px; -webkit-border-top-right-radius : 30px; -moz-border-radius-topleft : 30px; -moz-border-radius-topright : 30px; border-top-left-radius : 30px; border-top-right-radius : 30px; } #div3 { -webkit-border-bottom-left-radius : 30px; -webkit-border-bottom-right-radius : 30px; -moz-border-radius-bottomleft : 30px; -moz-border-radius-bottomright : 30px; border-bottom-left-radius : 30px; border-bottom-right-radius : 30px; } </style> </head> <body> <header> <h1>CSS3 테두리 속성</h1> </header> <div id="div1"></div> <div id="div2"></div> <div id="div3"></div> </body> </html> |