Skip to main content

CSS Properties

  1. margin : length or percentage or auto;  
  2. margin-top a:link list-style
  3. margin-left a:visited list-style-image
  4. margin-right a:hover list-style-image-position
  5. margin-bottom a:focus list-style-image-type
  6. padding-top : length or percentage Css Anchor, Link height
  7. padding-left a.column1:link line-height
  8. padding-right Css Border max-height
  9. padding-bottom border min-height
  10. color : red or #2398 or rgb(,,) border-style max-width
  11. letter-spacing : normal or length border-width min-width
  12. text-align: left or center or right or justify border-bottom Css Classification
  13. text-decoration: underline or overline or line through or blink border-bottom-color clear
  14. text-indent : length or percentage border-bottom-style cursor
  15. text-transform: none or capitalize or lowercase border-bottom-width display
  16. white-space: normal or pre or nowrap border-right float
  17. word-spacing: normal or length border-right-color overflow
  18. Font border-right-style visibility
  19. font border-right-width z-index
  20. font-family border-left Css Positioning
  21. font-size border-left-color position
  22. font-style border-left-style Css Psuedo Elements
  23. font-variant border-left-width p:first-line
  24. font-weight border-top p.special:first-line
  25. Css Background border-top-color p-first-letter
  26. background border-top-style 
  27. background-color border-top-width 
  28. background-image  
  29. background-position  
  30. background-repeat  

Comments

Popular posts from this blog

MSW Logo

Start Logo and type the following command. cs for [j 1 9 1][rt 45 for [i 1 15 1] [repeat 60[lt 6 fd :i]]] Output :

Example CSS file

Example CSS file Add the following in the Head section of your web page <link href="default.css" rel="stylesheet" type="text/css" /> do necessary modification save the code below in a file name default.css and see the result *{  margin: 0;  padding: 0; } body {  margin: 20px 0;  background: #FFFFFF;  font: normal 13px Arial, Helvetica, sans-serif;  color: #666666; } a {  color: #29A3E1; } a:hover {  text-decoration: none;  color: #E16629; } /* Boxed */ .title {  background: url(images/img4.gif) no-repeat right center;  border-bottom: 3px solid #CFCFCF; } .boxed1 .title {  font: bold 100% "Trebuchet MS", Arial, Helvetica, sans-serif; } .boxed1 .content {  background: url(images/img05.gif) no-repeat left bottom;  padding: 20px; } .boxed2 .title {  font: normal 182% "Trebuchet MS", Arial, Helvetica, sans-serif; } .boxed2 .content {  background: url(images/img06.gif) repeat-x left bottom; ...