Add the following to your table class:
table-layout:fixed; width: 100%;
Add the following to your table class:
table-layout:fixed; width: 100%;
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
[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
not working in forms.
Should change it to “Submit”
Make the text on a radio button click-able.
[html]
<label><input type="radio" value="apple" name="fruit">Apple</label>
<label><input type="radio" value="orange" name="fruit">Orange</label>
<label><input type="radio" value="banana" name="fruit">Banana</label>
[/html]
All the status to work… the order is,
[css]
a: link
: visited
: hover
: active
[/css]
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]
When you are developing a site, sometimes you need a dummy text for placeholder.
Here it is! The simply dummy text site, Lorem Ipsum
Html内の<img>にハイパーリンク<a>を付けるとboarderが出てしまう。
[html]<a href=""><img src="" width="" height="" <strong>boarder="0"</strong>></a>[/html]