CSS 2.1 快速導覽 - 浮動 float

float 性質 (property) 為 CSS 中用來設定元素 (element) 的對齊方式,有以下的關鍵字 (keyword)

  • left
  • right
  • none


left 使元素位於左邊,其他內容則在右邊以流動模式呈現,相對的 right 使元素位於右邊,其他內容則在左邊以流動模式呈現, none 則是禁止流動模式。


舉例如下
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
.exampleleft {
    width: 25%;
    height: 25%;
    float: left;
}
 
.exampleright {
    width: 25%;
    height: 25%;
    float: right;
}
 
/* 《程式語言教學誌》的範例程式
    檔名:visual01.css
    功能:示範 CSS 2.1 樣式表的使用
    作者:張凱慶
    時間:西元 2011 年 7 月 */


我們以下面的 HTML 文件載入
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<html>
<head>
<title>網頁標題</title>
<link rel="stylesheet" type="text/css"
      href="visual01.css">
</head>
<body>
<img class="exampleleft" src="example.jpg">
You ever have that feeling where you're not sure if
you're awake or still dreaming?
A prison for your mind.
Free your mind.
Believe the unbelievable.
There is no spoon.
I can only show you the door, you have to walk
through it.
Choice. The problem is choice.
<img class="exampleright" src="example.jpg">
Then tomorrow we may all be dead, but how would that
be different from any other day?
I have dreamed a dream, but now that dream has gone
from me.
Choice is an illusion, created between those with
power, and those without.
Because I choose to.
Everything that has a beginning has an end.
</body>
</html>
 
<!-- 《程式語言教學誌》的範例程式
     檔名:visual01.html
     功能:示範 CSS 2.1 樣式表的使用
     作者:張凱慶
     時間:西元 2011 年 7 月 -->


瀏覽器 (broswer) 開啟如下



中英文術語對照
性質property
元素element
關鍵字keyword
瀏覽器broswer


您可以繼續參考

JavaScript 範例

定位相關


相關目錄
CSS 2.1 快速導覽
HTML, CSS 教材
首頁


參考資料
http://www.w3.org/TR/CSS21/visuren.html
https://developer.mozilla.org/en/CSS/float

沒有留言: