table content with 100% over flow from div =(

Add the following to your table class:
table-layout:fixed; width: 100%;

Media query

iPad – 768px x 1024px
iPhone – 320px x 480px

For IE 8-

@media screen and (max-width: 1000px) {
#container{
width : 95%;
}
}
@media screen and (max-width: 760px) {
/* style */
}
@media screen and (max-width: 480px) {…}
@media screen and (max-width: 320px) {…}

@media only screen and (min-device-width: 760px)
and (max-device-width: 1000px){
/* style */
}

or import

css round corner what is -moz-, -webkit-

[html]
.box {
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
 
  -moz-box-shadow: 10px 10px 20px #000;
  -webkit-box-shadow: 10px 10px 20px #000;
  box-shadow: 10px 10px 20px #000;
}
[/html]

-moz- –> firefox 1.0
-webkit- –> safari 0.2 and chrome 3.0
border-radius –> opera 10.5, IE9, Firefox, Chrome

more detail in developer.mozilla

a link – hover, link visit…

All the status to work… the order is,

[css]
a: link
: visited
: hover
: active
[/css]

Back to top link

To create “back to top” link, we need 2 codes.

One for the top of the html page (at the top of the document after the <body> tag).

[html]<a name="top" id="top"></a>[/html]

(2 values of ID and NAME have to be equal for validation on validator.w3.org)

One for the link you want to show the link.

[html]<a href="#top">Back to top</a>[/html]