The first commented line is your dabblet’s title
{"view":"split-vertical","prefixfree":"1","page":"css"}
<!-- content to be placed inside <body>…</body> -->
<p class="tooltip">
Bitte das Limit beachten
</p>
/**
* The first commented line is your dabblet’s title
*/
body {
margin: 5em;
}
.tooltip {
font: normal 11px/17px sans-serif;
color: red;
height: 17px;
padding: 0 6px;
position: absolute;
background: #ffcccc;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
}
.tooltip:after {
top: 17px;
right: 8px;
width: 0;
display: block;
content: "";
position: absolute;
border-width: 4px 4px 0;
border-style: solid;
border-color: #ffcccc transparent;
}