Time of Update: 2017-01-13
首先我們選擇一幅帶有半透明點的png圖片,頁面的背景色是#660,觀察在ie6/7/8下的表現。因為ie6不支援半透明點,所以就變成了灰色<style>body {background: #660}div{ position:absolute; filter: alpha(opacity=20); width: 256px; height:
Time of Update: 2017-01-13
利用圖片的margin屬性將圖片水平置中,利用div的padding屬性將圖片垂直置中。結構代碼同上;css代碼如下:div {width:300px; height:150px; background-color:#eee; padding-top:50px; border:#000 1px solid;}img {display:block; margin:0
Time of Update: 2017-01-13
由於瀏覽器的開發商越來越多,關於css教程相容也是各位設計師,站長們討論的熱門話題了,下面我們總結了一些學用中的css相容問題的。1、div的垂直置中問題vertical—align:middle;將行距增加到和整個div一樣高line-height:200px;然後插入文字,就垂直置中了。缺點是控制內容不要換行2
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
Time of Update: 2017-01-13
1. 使用doctype你應該在一直每個html檔案的頭部都使用doctype,並且我們推薦使用strict 版本,比如:<!doctype html public "-//w3c//dtd html 4.01//en" "http://www.w3.org/tr/html4/strict.dtd">或者,對於xhtml使用:<!doctype html public "-//w3c//dtd xhtml 1.0 strict/
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
Time of Update: 2017-01-13
代碼如下 複製代碼 cssbox{ /* 非ie核心瀏覽器識別垂直置中 */ display:table-cell; vertical-align:middle; /* ie核心瀏覽器識別垂直置中 */
Time of Update: 2017-01-13
自己做網站風格的朋友都會自訂分頁css教程樣式,讓分頁樣式和網頁風格更加搭配。 整理了24款較經典的page翻頁分頁css代碼,方便大家做分頁樣式用。 織夢的分頁樣式修改比較麻煩,還需要修改include路徑下的arc.list
Time of Update: 2017-01-13
<style type="text/css教程"> #container { /* 左輔助線 */
Time of Update: 2017-01-13
代碼如下 複製代碼 <title>一款相容性非常好的css滑動門菜單</title> <style type=text/css media=screen> <!-- *{font-size:12px;}
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
Time of Update: 2017-01-13
代碼如下 複製代碼 <!doctype html public "-//w3c//dtd html 4.01 transitional//en" "http://www.w3c.org/tr/1999/rec-html401-19991224/loose.dtd"> <html
Time of Update: 2017-01-13
文章提供三種關於文章標題過長了,控制顯示為略號方法,下面有三款css教程式控制制省略符號方式顯示(ie、ff)代碼,後兩款都相容ie,firefox。div{width:200px;/*容器的基本定義*/height:200px;background-color:#eee;}/* ie下的樣式 */ p span{display: block;width:200px;/*對寬度的定義,根據情況修改*/overflow: hidden;white-space:
Time of Update: 2017-01-13
/* for firefox & ie7 */ 代碼如下 複製代碼 * html .thumbimaged { /* for ie6 */ width: expression(this.width > 650 && this.width >
Time of Update: 2017-01-13
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.111cn.net/tr/xhtml1/dtd/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta
Time of Update: 2017-01-13
代碼如下 複製代碼 .arrow { width: 0; height: 0; line-height: 0; &
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
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">
Time of Update: 2017-01-13
先看一個例子: html:111cn.net代碼如下:<ul> <li></li> <li></li> </ul>css:111cn.net代碼如下:ul { margin:0; padding:10px; list-style:none; background-color:#006699; } ul li { width:100px; height:100px; float:left; margin-right:10px;
Time of Update: 2017-01-13
文法:overflow : visible | auto | hidden | scrollvisible::不剪下內容也不添加捲軸。假如顯式聲明此預設值,對象將被剪下為包含對象的window或frame的大小。並且clip屬性設定將失效。 auto:此為body對象和textrea的預設值。在需要時剪下內容並添加捲軸 hidden:不顯示超過對象尺寸的內容。scroll:總是顯示捲軸。執行個體 代碼如下 複製代碼