kyllle
11-20-2008, 12:08 PM
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:
<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>
<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>