devo-book/pad.html
2021-08-17 10:42:48 -04:00

32 lines
554 B
HTML

<style>
.pad
{
position:relative;
margin:50px;
border-top:5px solid blue;
}
.pad::before, .pad::after
{
content: " ";
display: block;
width: 20px;
height: 20px;
position: absolute;
top: -12px;
border: 5px solid #000;
box-sizing: border-box;
transform: rotate(45deg);
}
.pad::before
{
left: -18px;
}
.pad::after
{
right:-18px;
}
</style>
<div>
<div class="pad"></div>
</div>