Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- XML
- control
- while
- Linux
- Class
- system
- python
- Pipelining
- html
- react
- computer
- instruction
- architecture
- web
- for
- github
- data structure
- MIPS
- javascript
- DoM
- mysql
- DB
- php
- DATAPATH
- Algorithm
- Java
- DS
- function
- MacOS
- CSS
Archives
- Today
- Total
YYYEJI
[XML] CSS에서 border 속성 (top, right, bottom, left) 본문
HTML(or XML) & CSS & JavaScript
[XML] CSS에서 border 속성 (top, right, bottom, left)
YEJI ⍢ 2022. 9. 15. 00:34728x90
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;
◡̈
'HTML(or XML) & CSS & JavaScript' 카테고리의 다른 글
[XML] CSS에서 transform-origin 속성 (0) | 2022.09.15 |
---|---|
[XML] CSS에서 transform 속성 (0) | 2022.09.15 |
[XML] CSS에서 float 속성과 text-align 속성 (0) | 2022.09.15 |
[XML] CSS에서 Margin(마진) 속성 (0) | 2022.09.15 |
[XML] CSS에서의 색상 (0) | 2022.09.14 |