Go Back   CodingForums.com > :: Client side development > HTML & CSS

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 11-20-2008, 12:08 PM   PM User | #1
kyllle
Regular Coder

 
kyllle's Avatar
 
Join Date: Mar 2008
Posts: 334
Thanks: 85
Thanked 2 Times in 2 Posts
kyllle can only hope to improve
adding space between a background & its border

Hi guys just want to know how to add space between a background color and its border, basically iv tried padding but with no luck:

Code:
<style type="text/css">
  
  .box{
	width: 200px;
	height: 100px;
	background-color: #dedede;
	border: 5px solid #000;
	padding: 10px;
	}
	
  
  </style>
 </head>

 <body>
  <div class="box"></div>
 </body>
__________________
www.kylehouston.com
kyllle is offline   Reply With Quote
Old 11-20-2008, 12:39 PM   PM User | #2
abduraooft
Supreme Master coder!

 
abduraooft's Avatar
 
Join Date: Mar 2007
Location: N/A
Posts: 14,678
Thanks: 158
Thanked 2,182 Times in 2,169 Posts
abduraooft is just really niceabduraooft is just really niceabduraooft is just really niceabduraooft is just really niceabduraooft is just really nice
You may need to have two divs, like
Code:
<style type="text/css">
  .box{
	width: 200px;
	height: 100px;
	border: 5px solid #000;
	padding: 10px;
	postion:relative;
	}
	.box div{
	postion:absolute;
	width:100%;
	height:100%;
	background-color: #dedede;
	}
</style>
Code:
<div class="box" >
 <div></div>
</div>
__________________
Quote:
The Dream is not what you see in sleep; Dream is the thing which doesn't let you sleep. --(Dr. APJ. Abdul Kalam)
abduraooft is offline   Reply With Quote
Users who have thanked abduraooft for this post:
kyllle (11-20-2008)
Old 11-20-2008, 03:00 PM   PM User | #3
kyllle
Regular Coder

 
kyllle's Avatar
 
Join Date: Mar 2008
Posts: 334
Thanks: 85
Thanked 2 Times in 2 Posts
kyllle can only hope to improve
ah loads of thanks Abdul!!!
__________________
www.kylehouston.com
kyllle is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

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

Forum Jump


All times are GMT +1. The time now is 09:30 PM.


Advertisement
Log in to turn off these ads.