+ 1
How to add triange border I mean to say bottom arrow with a box.
1 Odpowiedź
+ 2
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<style>
body {
margin:20px;
}
#tring {
position: absolute;
top: 1em;
left:1em;
border:50px solid black;
border-color: transparent transparent black transparent;
}
</style>
</head>
<body>
<span id="tring"></span>
</body>
</html>
like this?