Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

css overwriting styles

body {
background-color: black;
background-color: blue !important ;
  /*
  The second background color would show since it has
  a !important afterwards, this is to overwrite css you have
  already wrote. However, this is not recomended. 
  */
}
 
PREVIOUS NEXT
Tagged: #css #overwriting #styles
ADD COMMENT
Topic
Name
5+6 =