hi
Can I remove double border of crossing/concat divs ?
here is my html
<html>
<head>
<title></title>
<style type="text/css">
..celldiv {
border: 1px solid #003399;
padding: 2px 2px 2px 2px;
}
</style>
</head>
<body>
<div class="celldiv" >one</div>
<div class="celldiv" >two</div>
<div class="celldiv" >three</div>
<div class="celldiv" >four</div>
</body>
</html>
Comment