Time of Update: 2017-01-13
1,word-break:break-all 例如div寬200px,它的內容就會到200px自動換行,如果該行末端有個英文單詞很長(congratulation等),它會把單詞截斷,變成該行末端為conra(congratulation的前端部分),下一行為tulation(conguatulation)的後端部分了。2,word-wrap:break-word
Time of Update: 2017-01-13
一個一行內的解決方案。不知道你有沒有記得,當給父級元素指定overflow: hidden的時候,父元素就會擴充以包含浮動?這個方法就類似這個,關鍵是使用了em,並給每個字母之間添加了空格: <!doctype html><html><head><meta charset=utf-8 /><title>vertical text</title><style> h1 {
Time of Update: 2017-01-13
瀏覽器支援所有主流瀏覽器都支援 visibility 屬性。注釋:任何的版本的 internet explorer (包括 ie8)都不支援 "inherit" 和 "collaps教程e" 屬性值。所有主流瀏覽器都支援 display 屬性。注釋:任何版本的 internet explorer (包括 ie8)都不支援
Time of Update: 2017-01-13
一、css hack 以下兩種方法幾乎能解決現今所有hack. 1, !important 隨著ie7對!important的支援, !important 方法現在只針對ie6的hack.(注意寫法.記得該聲明位置需要提前.) 代碼如下 複製代碼 <style> #wrapper {
Time of Update: 2017-01-13
一、舊的opacity設定 以下代碼是firefox和safari舊版本所需的透明度設定: 代碼如下 複製代碼 #myelement { -khtml-opacity: .5; -moz-opacity: 0.5;
Time of Update: 2017-01-13
定義和用法如果浮動非替換元素,則要指定一個明確的寬度;否則,它們會儘可能地窄。注釋:假如在一行之上只有極少的空間可供浮動元素,那麼這個元素會跳至下一行,這個過程會持續到某一行擁有足夠的空間為止。 預設值: none 繼承性: no 版本: css1
Time of Update: 2017-01-13
1.採用偽類:after進行後續空制的高度位零的偽類層清除2.採用css overflow:auto的方式撐高3.採用css
Time of Update: 2017-01-13
html中共有3種列表:無序列表ul、有序列表ol、定義列表dl。1、無序列表:<ul> <li>……</li> <li>……</li></ul> 看一款關於ul li菜單一實例 * { margin:0; padding:0; }ul{ list-style:none;}ul#nav { background:#f3c;
Time of Update: 2017-01-13
使用max-width,max-height;或者min-width,min-height的css屬性即可。如: 代碼如下 複製代碼 img{max-width:100px;max-height:100px;} img{min-width:100px;min-height:100px;} 對於ie6及其以下版本的瀏覽器,
Time of Update: 2017-01-13
正如positioniseverything,本文將主要講述關於position的理解,力求讓您看完本文後對position有著最全面的認識。position的四個屬性值:relative absolute fixed static 下面分別講述這四個屬性。 代碼如下複製代碼 <div id="parent"> <div id="sub1">sub1</id&
Time of Update: 2017-01-13
margin,是透明的,在它設定的值的範圍內,父元素的背景色或背景圖片均不受影響,能夠完整的呈現給使用者看到。margin屬性通過單獨的屬性對其上、右、下、左依次進行賦值,我們常見的有margin:10px; OR margin:10px 20px; OR margin:10px 20px 10px 20px;但是你知道:margin:10px 15px 3px;什麼意思嗎?你以為它的表達意思是:margin:10px 15px 3px
Time of Update: 2017-01-13
首先我們來看一下上圖中兩個選項按鈕的區別,B樣式是不是很難看?我們來看一下源碼是不是有問題A處代碼:<input type="radio" name="radiobutton" value="radiobutton" id="radiobutton" /><label
Time of Update: 2017-01-13
經常使用div布局的盆朋友應該有過這樣的經驗,並且這樣的情況並不少見:有一個 div,當它裡面的內容超過它的高度時,讓這個 div 的高度隨內容自動變化(自適應),但是如果內容很少時,又想讓這個 div 的高度保持一個固定的最小值,這樣問題就來了,我們都知道,div 在 IE7、IE8、Firefox、Opera 和 chrome 中不設定高度(或者 height:auto )的情況下,其高度是自適應的,但如果設了高度,超出部分會自動隱藏,既(overflow:hidden),但是 IE6
Time of Update: 2017-01-13
代碼如下複製代碼 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><FCK:meta
Time of Update: 2017-01-13
那麼如何解決這個bug呢,解決該bug的方法如下:1、將select放到iframe裡面,div 無法覆蓋select,但是iframe 可以覆蓋select,而div可以覆蓋iframe,所以解決辦法就是用Z軸高度更高的Iframe元素,包裹或覆蓋住下拉式清單方塊控制項,使其回到正常的Z軸高度上來,但每個select都加太煩了,不推薦2、在需要遮蓋select的那個div放入一個空的iframe,這樣就可以針對性的解決問題了,簡單,值得推薦下面就第2種方法貼出css教程代碼如下: &
Time of Update: 2017-01-13
一、x:after .clearfix:after {content: “”;display: block;clear: both;visibility: hidden;font-size: 0;height: 0;} .clearfix {*display: inline-block;_height:
Time of Update: 2017-01-13
代碼如下複製代碼 <!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"><html xmlns="http://www.111cn.net/1999/xhtml"><head><meta
Time of Update: 2017-01-13
代碼如下複製代碼 <!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-
Time of Update: 2017-01-13
第一種方法: 還好,微軟提供了這樣一個代碼: <meta http-equiv="x-ua-compatible" content="ie=7" /> 把這段代碼放到裡面,在ie8裡面的頁面解析起來就跟ie7一模一樣的了,所以,基本上可以無視ie8,剩下的代碼只需要這樣寫就可以了 background:#ffc; /*
Time of Update: 2017-01-13
我們判斷圖片超過設定大小時就會自動縮放到指定大小的expression起到關鍵作用。<style> .image { max-width:600px;height:auto;cursor:pointer; border:1px dashed #4e6973;padding: