css box heading 2
draft
by tomsx
HTML
<body>
<div id="box">
<h1><span>Ged sdfsdfsdf</span></h1>
<p>sdfasdf asdf asdf asdf asf</p>
</div>
</body>
CSS
#box{
background-color:white;
border-bottom-left-radius: 7px;
border-bottom-right-radius: 7px;
-wekit-border-radius:7px;
-moz-border-radius:7px;
border:2px solid #D6E6F2;
width:350px;
height:200px;
padding:15px;
border-radius:15px;
color:#fff;
font-family:Tahoma, Geneva, sans-serif
}
h1{
border-bottom:2px solid black;
}
h1 span{
float:left;
padding:0 10px;
background-color:white;
margin-left:10px;
margin-top:-15px;
display:block;
font-size:18px;
color:black;
}