Go Back   SitePoint Forums > Forum Index > Design Your Site > Web Page Design > CSS
Newsletter FAQ Members List Calendar Mark Forums Read

New to SitePoint Forums? Register here for free!

SitePoint Sponsor
 
Reply
 
Thread Tools Display Modes
Old Nov 19, 2009, 15:28   #1
vayumahesh
SitePoint Enthusiast
 
Join Date: Mar 2004
Location: Farmington
Posts: 64
Padding or Margin does not work within a div

I am trying to apply padding-top or margin-top to 'style2' and 'style6' definitions but it is not working. What am I doing wrong ?

<div class="FeatureLeft">
<img src="/pic1.jpg" name="photo" width="84" height="68" border="0" id="photo" />
</div>
<div class="FeatureRightMsg">
<span class="style2"><a href="/message1.html" >Message 1</a><br /></span><span class="style6">Message By</span>
</div>

Here is my CSS definition.

.FeatureLeft {
float: left;
margin: 3px 0px 0px 0px;
height: 68px !important;
}
.FeatureRightMsg {
background-color:#526284;
float: right;
width: 132px !important; height: 68px !important;
margin: 3px 0px 0px 0px;
}

.style2 {color: #FFFFFF; font-weight: bold; margin-top:10px;}
.style6 {color: #FFFFFF; padding-top:10px;}
vayumahesh is offline   Reply With Quote
Old Nov 19, 2009, 15:37   #2
RyanReese
CSS Consultant/Ninja-I'm fast
SitePoint Award Recipient
 
RyanReese's Avatar
 
Join Date: Oct 2008
Location: Whiteford, MD
Posts: 10,083
Hi, becauase the <span> is an inline element it doesn't acccept vertical padding/margins.

Giving display:block; should work, however if you need thigs on the same line still you can add float:left; to the span.

Edit:

You have a <br> after each span, so remove the <br> and just give display:block; to the spans
RyanReese is online now   Reply With Quote
Reply

Bookmarks

« Previous Thread | Next Thread »

Thread Tools
Display Modes

 
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Sponsored Links
 
Forum Jump


All times are GMT -7. The time now is 23:00.


Powered by vBulletin® Version 3.7.1
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Copyright 1998-2009, SitePoint Pty Ltd. All Rights Reserved