欢迎来到 常识词典网 , 一个专业的常识知识学习网站!
[ Ctrl + D 键 ]收藏本站
前幾天 Code School 的 CSS Cross Country 課程釋出了。這一集是我相當期待的一集,整理和澄清了非常多「非常基礎但如果觀念不好」就會搞得一塌糊塗的 CSS 知識。
看完把筆記整理在這裡,不過相較於原網站,我寫的算是非常簡陋的版本。
我相當強烈推薦大家購買回去和練習,相信會對自己的 CSS 掌握能力有高度的提升。
Ch1Style 生效的位置inline style在<head> </head>
裡面external link: 如 link rel="stylesheet" href="style.css"
SelectosElement selectorClass selectorID selectorCompound selector : h1#header
Advanced Selectorref: Taming Advanced CSS Selectors
#sidebar h2
— 0, 1, 0, 1h2.title
— 0, 0, 1, 1h2 + p
— 0, 0, 0, 2#sidebar p:first-line
— 0, 1, 0, 2cascade order優先權照
external<link>
<head>
inline style!important相同的 selector 重複的屬性,後寫的會覆蓋前面的。沒有重複的則會合併。Float定義把元素從傳統的 document flow 中移除,然後浮動掛在指定的邊界上。其他在 parent 元素的內容會繞著這個 float 的元素排列。種類float: leftfloat: rightfloat: noneStacking order浮動的元素從 parent 的左/右邊界開始排,不夠放的話會找另下一個可以停泊的邊界繼續排如果浮動的元素高度不同,例如左邊的特別長,旁邊的元素的比他短,則下一個停泊的不會是左邊界,而是會停在左邊元素的右邊。(下一個可以停泊的邊界原則)floating left & right同時使用 float:left 與 float:right,寬度夠的話,會分列兩邊。如果寬度不夠,以先 claim 的會是第一排(靠右),後 claim 的會被扔到下一排(靠左)去。
Ch2clearfix為什麼要使用 cleafix狀況一:float 元素可能比旁邊的非 float 元素高。(因為 float 沒有高度)所以下一段會黏上來。狀況二:所有的 children 都是 float。(因為 float 沒有高度)所以 container 看起來會太短。常用 clearfix 技巧clear with a subsequent elemet ( 在下面的元素放clear: both
)但這一招移動 div 順序就會爆炸背景和邊界不會被展延失敗!
manual clearing (手動在下面塞一個空的 div,對它下clear: both
)需要塞一個空的 element看起來很礙眼正解技巧 ( self-cleared ).group 要下在 parent nodeInheritance & Specificity巢狀元素會自動繼承 parent 的 style可以 override parent 的 styleid 比 class 的優先權高優先權算法0,0,0,0
第一個數字:inline style第二個數字:of ID selectors第三個數字:of class selectors第四個數字:of element seletors
越大的可以把祖先蓋掉。
延伸閱讀:[Don’t use ID selectors in CSS]screwlewse/2010/07/dont-use-id-selectors-in-css/
Ch3box model由內往外是
content areapadding areaborder areamargin area寬度計算
box width = content width + padding width + border width
overflowvisible: the default value, which allows content to extend beyond container boundariesauto: adds a scrollbar as needed when content overflowshidden: hides content that extends beyond the containerscroll: adds a scrollbar at all times, even if unneededpositioning有四種
staticrelativeabsolutefixed定義
Elements have a position value of static by defaultUsing a value other than static causes an object to become a positioned elementPositioned elements may use the top, left, bottom, and right properties for placementRelative positioningRenders in the normal flow, then shifted via positioning properties
Absolute positioningTakes an element out of the normal flow for manual positioning
定位技巧parent element 下 relative,內部需要定位的元素下 absolute,就不會超過邊界。
Fixed positioningAffixes an element to a specific place in the window, where it will stay regardless of scrolling。(在螢幕上永遠保持不動,釘住)
z-No z- or equal z- = overlap determined by placement in DOM (後放的疊在先放的上面)Higher values appear above lower values( z- 比較大的在比較上面)Elements must be positioned for z- to take effect. Use relative if you’re not interested in moving the object (必須先被「定位」,才能使用 z-)延伸閱讀: Understanding CSS z-
Ch4整理 CSS code用,
padding/margin 上右下左其他綜合Display typesblockStretch the full width of their container ( container 有多寬就延伸到多寬)Behave as though there is a line break before and after the element (有斷行效果)Full box model can be manipulatedDisplay TypesBlock elements: Tags that are block-level by default: <div>
, <p>
, <ul
>, <ol>
, <li>
and <h1>
through <h6>
.
Tags that are inline by default include <span>
, <a>
, <em>
, <img>
多個 margin 疊在一起,會有 margin 重疊問題( margin 會合併計算,取最大的。假設第一個 div margin-bottom: 40px,第二個 div margin-top: 20px。則他們的距離會是 40px ,而不是 60px)。
解決重疊技巧:Collapsing margins will not occur when one or more block element has:
Padding or borderRelative or absolute positioningA float left or right延伸閱讀: Collapsing margins
rest & normalizeEric Meyer’s Reset CSS Normalize.css
Ch6Content Image 與 Layout imageContent should be marked up as inline imagesLayout elements should be defined as background imagesImage Cropping其實沒有多少好的方法,建議取代方案:
Resize images to a square < height and width of all of your imagesResize them server-sideProvide image-uploading instructions in your CMS延伸閱讀:Experiments with wide images
Ch7圖片取代文字技巧使用 text-indent: -9999px;
css spirite 技巧為什麼要使用 CSS spirite
Issues with swapping background images:
Adds an extra HTTP requestImage is not preloaded (網路不夠快時,hover 感覺畫面會閃一下)Advantages to the sprite approach:
Reduces number of HTTP image requestsRemoves loading flash / need for preload使用方法Multiple images & states:
延伸閱讀: Spritecow
Ch8psuedo classAllow you to conditionally select an element based on state or position
last-childnth-child (an+b)延伸閱讀:
Meet the Pseudo Class SelectorsCSS Reference # 支援瀏覽器列表psuedo element利用 before, after 技巧取代掉無用 element原本是對 blockquote span
下 styling。
改成對 blockquote:before
下 styling。
html 可以砍成
利用 before, after 實作縮排延伸閱讀:A Whole Bunch of Amazing Stuff Pseudo Elements Can Do
下一篇:CMSTOP适用对象 下一篇 【方向键 ( → )下一篇】
上一篇:兼容移动设备的WEB设计要设计几个分辨率版本 上一篇 【方向键 ( ← )上一篇】
快搜