À̹ÌÁö·á Ç¥ÇöÇؾßÇß´ø Á» ´õ µðÀÚÀνº·¯¿òÀÌ °¡¹ÌµÈ Á¡¼±¶óÀÎÀ» CSS3¿¡¼ dashed ½ºÅ¸ÀÏÀ» º¸°ÇÏ¿© »ç¿ëÇÒ ¼ö ÀÖ½À´Ï´Ù.
µ¥¸ð»çÀÌÆ®·Î À̵¿Çϸé, ÇØ´ç È¿°ú¿¡ °üÇÑ HTML¼Ò½º¿Í CSS3¼Ò½º¸¦ È®ÀÎÇÒ ¼ö ÀÖ½À´Ï´Ù.
[html]
<html>
<head>
<link href='http://fonts.googleapis.com/css?family=Pacifico' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="container">
<div class="dashed-borders">
<p>Horrible Dashes</p>
</div>
</div>
</body>
</html>
[css]
.dashed-borders {
background: #1d4a91;
}
.dashed-borders:before {
content: "";
display: block;
height: 5px;
width: 100%;
margin-top: 40px;
background-color: #2356a1;
border-top: 2px dashed #091f5c;
border-bottom: 2px solid #091f5c;
box-shadow: 0 7px 0 0 #183f84;
}
.dashed-borders:after {
content: "";
display: block;
height: 5px;
width: 100%;
margin-bottom: 40px;
background-color: #2356a1;
border-bottom: 2px dashed #091f5c;
border-top: 2px solid #091f5c;
box-shadow: 0 -7px 0 0 #183f84;
}
.container {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: <span class="crayon-cn" style="box-sizing: border-box; font-fam
|