Loading...

Category: CSS

  • The SourceBench 12:39 pm on November 27, 2009 Permalink | Reply
    Tags: firefox, , , safari, transparency, transparent   Posted in CSS

    transparent element for ie, firefox and safari 

    #element {
    filter:alpha(opacity=50); //For IE
    opacity: 0.5; //Safari
    -moz-opacity:0.5; //Mozilla & Firefox
    }
    

     
  • The SourceBench 12:37 pm on November 27, 2009 Permalink | Reply
    Tags: center, div, horizontal, vertical   Posted in CSS

    Horizontal and vertical center for a div 

    #centered_div {
      position: absolute;
      left: 50%;
      width: 800px; /* width of your div */
      margin-left:-400px; /* half width of your div and make it negative */
    
      top: 50%;
      height: 600px; /* height of your div */
      margin-top: -300px; /* half heigt of your div and make it negative */
    }
    

     
c
compose new post
j
next post/next comment
k
previous post/previous comment
r
reply
e
edit
o
show/hide comments
t
go to top
l
go to login
h
show/hide help
esc
cancel