vote up 0 vote down star

I want the 2 columns to touch ie. remove the margins, how can I do this?

My code:

	<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
 <HEAD>
  <TITLE>testing</TITLE>
  <!-- css --> 
<link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/2.5.2/build/reset-fonts-grids/reset-fonts-grids.css"> 
<!-- js --> 
<script type="text/javascript" src="http://yui.yahooapis.com/combo?2.5.2/build/utilities/utilities.js"></script> 
<style>
.yui-b {
	background-color: #eeeeee;
}


</style>
 </HEAD>

 <BODY>
  <div id="doc3" class="yui-t1"> <!-- change class to change preset --> 
		<div id="hd">header</div> 

		<div id="bd"> 
	      <div id="yui-main"> 
		 <div class="yui-b">
			 bd.main
			 </div> 
	      </div> 

		  <div class="yui-b">bd.other</div> 		
		</div> 

		<div id="ft">footer</div> 
	</div> 
 </BODY>
</HTML>
flag

3 Answers

vote up 1 vote down

Add a class to the right column and set margin-left to 0.

If that doesn't work you might have to increase the width by 1 or 2%. You can use firebug to check the applied styles and change them on the fly.

link|flag
didnt' work for me. – Anonymous Code Sep 29 '08 at 18:19
vote up 1 vote down

Notice that you're using YUI (Yahoo UI).

Look for the YUI reset.css. Every browser has potentially different margin, padding, font-size defaults. You should really start every web app with a reset.css file like that to bring everything to a common denominator. Otherwise you might find you "fix" the issue, only for it to appear again when viewed from another machine / platform.

Should hopefully start you off with all block elements having no margins or padding and then you can rather add margins and padding back in where you need it.

link|flag
vote up 0 vote down

Notice that you're using YUI (Yahoo UI).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.