Tuesday, June 25, 2013

HTML Notes

Overlay one div on another div

 #div_1 {
  position: absolute;
 }
 
thus the two div_1 is overlaid on div_2

Jump Page in Blogger

<!--more--><br/>

Escape special characters in xml

 

Excapte special characters in html

Html Escapte Online Tool

Text aligned in center in the div

  #life_progressbar_div {
      position: absolute; 
      text-align: center; 
  }
this depends the the "div" width

Enable responsive css of Twitter Bootstrap

 
 
 
Notice the Order.

Tired of Boostrap CSS

tired of your website looking like all other 6,000 websites using Twitter Bootstrap? Here is what bootswatch offers!

Comments in JavaScript

only possible use /* */ rather than //

Image Aligned in Center CSS

img.center {
     display: block;
     margin-left: auto;
     margin-right: auto;
}

No comments:

Post a Comment