Recent Posts
«   2025/06   »
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
관리 메뉴

I AM EVERYTHING

[CSS] 테두리 있는 삼각형 만들기 본문

programming

[CSS] 테두리 있는 삼각형 만들기

박꽁냥 2018. 9. 18. 11:42

.pop:before{content: ''; width: 0; height: 0; position: absolute; top: -10px; left: 20px; border-left: 10px solid transparent; border-right: 10px solid transparent; border-bottom: 10px solid #ccc;}


.pop:after{content: ''; width: 0; height: 0; position: absolute; border-left: 10px solid transparent; border-right: 10px solid transparent; border-bottom: 10px solid #fff; top: -9px; left: 20px;}

Comments