div+css+html學習筆記(1)

來源:互聯網
上載者:User

1. 匯入外部css:

<link rel="stylesheet" type="text/css" href="skin/css/index.css">

 2. 橫排div

#search {    width: 10%;float: left;}

float: left; 這個屬性讓search往左浮動,這樣它的後面(右邊)就可以放置別的元素。

 3.兩個div連在一起,不留空隙

#a { background: #ff0000; width: 70%;height: 20px; float: left;}#b { background: #ff0000; width: 30%; height: 20px; float: right; }

 4. div外邊框
border: 1px solid #ccc; 

5. 虛線

<hr style="border: 1px dashed #ccc; height: 1px">

6. img標籤 alt的作用,例:

<img alt="木有圖片" src="skin/images/index/left_top.jpg">

當src裡面的圖片因為網上太慢,或者路徑錯誤,或者其他原因導致圖片顯示不了時,就會用alt裡面的文字說明代替。

 

 ps:寬度用實際像素,不管你的瀏覽器視窗有多大,都會顯示原來的大小,這樣圖片不易變形。如果用百分比,他是占父布局的比分幾,大小與會隨瀏覽視窗的大小變化。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.