每天進步1%,一年後的自己將比現在強37倍
世上沒有任何工作一開始就趣味盎然,與其找尋不存在的有趣工作,不如讓眼前的工作變得有趣比較快。 ——三木谷 浩史

目前分類:Coding (2)

瀏覽方式: 標題列表 簡短摘要

1.http://www.w3schools.com/css/css_howto.asp

Cascading order

Note: If the link to the external style sheet is placed after the internal style sheet in HTML <head>, the external style sheet will override the internal style sheet!

 

2.http://www.w3schools.com/css/css_font.asp

Set Font Size With Em

The size can be calculated from pixels to em using this formula: pixels/16=em

Use a Combination of Percent and Em

The solution that works in all browsers, is to set a default font-size in percent for the body element:

Example

body {font-size:100%;}
h1 {font-size:2.5em;}
h2 {font-size:1.875em;}
p {font-size:0.875em;}

http://www.w3schools.com/css/tryit.asp?filename=trycss_table_border-collapse

4.http://www.w3schools.com/css/css_list.asp
Crossbrowser Solution

The following example displays the image-marker equally in all browsers:

Example

ul
{
list-style-type: none;
padding: 0px;
margin: 0px;
}

ivch23 發表在 痞客邦 留言(0) 人氣()

http://www.w3schools.com/js/default.asp

1.http://www.w3schools.com/js/js_obj_boolean.asp

Create a Boolean Object

 

2.http://www.w3schools.com/js/js_cookies.asp

JavaScript Cookies

read again

 


ivch23 發表在 痞客邦 留言(0) 人氣()