Results 1 to 3 of 3

Thread: HTML Box

  1. #1
    Join Date
    Sep 2007
    Posts
    172
    Thanks
    7
    Thanked 0 Times in 0 Posts

    Default HTML Box

    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

  2. #2
    Join Date
    Jan 2008
    Posts
    4,168
    Thanks
    28
    Thanked 628 Times in 624 Posts
    Blog Entries
    1

    Default

    Code:
    .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;
    }
    Code:
    <div class="fb">FB API</div>
    Jeremy | jfein.net

  3. The Following User Says Thank You to Nile For This Useful Post:

    bbilal (05-30-2011)

  4. #3
    Join Date
    Sep 2007
    Posts
    172
    Thanks
    7
    Thanked 0 Times in 0 Posts

    Default

    Thank you so much :/

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •