block by jrrickard 893f4c46c50e17efe3f7

Example of unicode arrow

Full Screen

index.html

<!DOCTYPE html>
<title>an example</title>
<style type="text/css">
  .tooltip {
     background: black;
     color: gray;
     position: fixed;
     top: 100px;
     left: 100px;
     width:200px;
     height:100px;
 }

 .tooltip:after {
     content: "\25BC"; /* this is the symbol */
     font-size: 30px; /* this controls size */
     text-align: center;  /* this controls position, left center or right */
     width: 100%; /* how much to use */
     position: absolute; /* overall positioning, this puts it at the end */
     margin : -1px 0px 0px 0px; /* margin can control fine tuning */
     top: 100%; /* put it at the bottom */
     left: 0; /* start the very left of the div */
 }
}
</style>
</head>
<body>
	<div class="tooltip">
		This is a tooltup window
	</div>
</body>

</html>