How to center an image in php and css?

MudiW

New member
I'm trying to make a header. Left image, middle image and right image. But I can't find the way

Code:
.topbandl { background-image: url(images/l_header.png); float: left; font-size: 10px; height:105px; position: relative; width: 20px;}
.topbandm { background-image: url(images/header_bg.png); margin:auto; font-size: 10px; height:105px; position: relative; width: 879px; }
.topbandr { background-image: url(images/r_header.png); float: left; font-size: 10px; height:105px; position: relative; width: 19px; }

In the php

Code:
<div class="topbandl">
<div class="topbandm">
<div class="topbandr"></div>
THANKS
 
Back
Top