This is my css
And this is my htmlPHP Code:div.members {
width: 400px;
padding: 0px;
margin: 0px auto;
border:1px solid #000; }
div.members span.pic {
float: left;
width: 100px; }
div.members span.profiel {
float: right;
width: 300px;
font-size:12px;
background-color:#f2f2f2;
text-align: left;
padding: 2px; }
This is a piece of a profile page, i want the span class pic & profile to be aligned on one line. This is working fine without the border around the div members but if i put a border around it the span class profile is aligned at the bottom (see here).PHP Code:<div align="center">
<div class="members">
<span class="pic">pic</span>
<span class="profiel">Gamertag: [TS] ThaLikz</span>
</div>
</div>
How can i get it aligned at one line??







Bookmarks