Is there a way to create a box with an arrow on its right center using CSS? Here is the code I have so far, but the arrow is not displaying. Any suggestions?
CSS:
.pageHelp{
float:right;
margin:10px 20px 0 0;
width:85px;
height:25px;
border-radius:3px;
background-color:#354E69;
}
.pageHelp p{
color:#000;
padding:5px;
text-align:center;
}
.pageHelp .arrow{
width:0;
height:0;
border-top:3px solid transparent;
border-bottom:3px solid transparent;
border-left:3px solid #354E69;
}
HTML:
<div class="pageHelp arrow"><p>In Page Help</p></div>