Kód: Vybrať všetko
<center>
<div>
<div class="btnLeft"></div> // lavy roh
<div class="btnText">Chcem jeden!</div> //stred ktoreho text sa bude menit
<div class="btnRight"></div> //pravy roh
<div>
</center>
a style.css
Kód: Vybrať všetko
.btnLeft{
display:inline;
float:left;
width:9px; height:53px;
background:url(btnLeft.gif) top right;
}
.btnRight{
display:inline;
float:left;
width:10px; height:53px;
background:url(btnRight.gif) top left;
}
.btnText{
display:inline;
float:left;
height:53px; line-height:53px;
vertical-align:middle;
color:#FFFFFF;
font-size:26px;
font-weight:bold;
background:#c20d0d;
}