Log in

View Full Version : Resolved HTML Box



bbilal
05-29-2011, 05:00 PM
Hi,

Can anyone tell me how to create this sort of box? I know inside is a facebook API, I will do that but how about the box? Thanks.

http://i55.tinypic.com/mwz02s.png

Nile
05-30-2011, 01:42 AM
.fb {
width: 100%;
height: 35px;
line-height: 35px;
border: 1px solid #ECF5FA;
border-bottom: 5px solid #DEEEF5;
border-radius: 3px;
position: relative;
}
.fb:after {
content: "";
position: absolute;
right: 0;
left: 0;
bottom: -6px;
height: 1px;
background: #ECF5FA;
}



<div class="fb">FB API</div>

bbilal
05-30-2011, 12:46 PM
Thank you so much :/