You can use the following css and html to do something in your post
CSS
#button {
background-color: #7BCEE6;
background-image: -moz-linear-gradient(top, #7BCEE6, #3F7DBB);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #7BCEE6), color-stop(1, #3F7DBB));
background-image: linear-gradient(top, #7BCEE6, #3F7DBB);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#7BCEE6', EndColorStr='#3F7DBB');
width:120px;
height:40px;
-moz-border-radius: 12px;
-webkit-border-radius: 12px;
border-radius: 12px;
}
#image {
width:25px;
height:40px;
background:#930;
margin-left:10px;
float:left;
}
#text {
text-shadow: 1px 1px 3px #888;
color:#fff;
font-size:22px;
float:left;
margin-top:5px;
}
HTML
<div id="button">
<div id="image"></div>
<div id="text">Reports</div>
</div>
live example: http://jsbin.com/ebuno5
Notes
Where there is a red block, it is assumed that you can add a png image. Also, you should keep in mind that most css3 in Internet explorer 8 is not supported. To add some css3 functions, for example, you can pie.htc
source
share