Posts

Showing posts from December, 2014

Easy way to arrange element of the web site using CSS

1.        Create CSS class first and add body, content, Header, title, Application Title, Page Title methods.(method implementation below) body {     color : #333333 ;     padding : 0 ;     margin : 0 ;     font-family : Verdana ;     font-size : 12px ;     background-color : #F6F6F6 ; } #content {     width : 90% ;     height : 600px ;     padding : 10px 10px ; } #Header {     float : left ;     clear : both ;     width : 100% ;     height : 80px ;     background-color : #00A6EB ; } .title {     text-shadow : 1px 1px 1px rgba(242,242,242,1) ;     font-weight : bold ;     text-transform : uppercase ;     color : #1D1212 ; ...