HTML(or XML) & CSS & JavaScript
[XML] CSS에서 border 속성 (top, right, bottom, left)
YEJI ⍢
2022. 9. 15. 00:34
728x90
CSS에서 border 속성이란 ? ? ?
요소의 테두리를 설정하는 속성입니다.
border 속성에는 3개의 argument가 있습니다.
1. width
2. line
3. line color
border: width line line-color;
border: 3pt solid blue;
border: 3pt dotted blue;
border: 3pt dotted blue;
background-clip: border-box;
border: 3pt dotted blue;
background-clip: padding-box;
border: 3px dotted black;
background-clip: content-box;
border-left: 5pt solid orange;
border-top: 5pt dotted yellow;
border-right: 10pt solid greenyellow;
border-bottom: 7pt dotted blue;
◡̈