# CSS float 属性
## 实例
把图像向右浮动:
```
img
{
float:right;
}
```
## 浏览器支持
| IE | Firefox | Chrome | Safari | Opera |
| --- | --- | --- | --- | --- |
所有主流浏览器都支持 float 属性。
注释:任何的版本的 Internet Explorer (包括 IE8)都不支持属性值 "inherit"。
## 定义和用法
float 属性定义元素在哪个方向浮动。以往这个属性总应用于图像,使文本围绕在图像周围,不过在 CSS 中,任何元素都可以浮动。浮动元素会生成一个块级框,而不论它本身是何种元素。
如果浮动非替换元素,则要指定一个明确的宽度;否则,它们会尽可能地窄。
注释:假如在一行之上只有极少的空间可供浮动元素,那么这个元素会跳至下一行,这个过程会持续到某一行拥有足够的空间为止。
| 默认值: | none |
| --- | --- |
| 继承性: | no |
| --- | --- |
| 版本: | CSS1 |
| --- | --- |
| JavaScript 语法: | _object_.style.cssFloat="left" |
| --- | --- |
## 可能的值
| 值 | 描述 |
| --- | --- |
| left | 元素向左浮动。 |
| right | 元素向右浮动。 |
| none | 默认值。元素不浮动,并会显示在其在文本中出现的位置。 |
| inherit | 规定应该从父元素继承 float 属性的值。 |
## TIY 实例
[float 属性的简单应用](/tiy/t.asp?f=csse_float)
使图像浮动于一个段落的右侧。
```
<html>
<head>
<style type="text/css">
img
{
float:right
}
</style>
</head>
<body>
<p>在下面的段落中,我们添加了一个样式为 <b>float:right</b> 的图像。结果是这个图像会浮动到段落的右侧。</p>
<p>
<img src="/i/eg_cute.gif" />
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
</p>
</body>
</html>
```
[将带有边框和边界的图像浮动于段落的右侧](/tiy/t.asp?f=csse_float2)
使图像浮动于段落的右侧。向图像添加边框和边界。
```
<html>
<head>
<style type="text/css">
img
{
float:right;
border:1px dotted black;
margin:0px 0px 15px 20px;
}
</style>
</head>
<body>
<p>在下面的段落中,图像会浮动到右侧,并且添加了点状的边框。我们还为图像添加了边距,这样就可以把文本推离图像:上和右外边距是 0px,下外边距是 15px,而图像左侧的外边距是 20px。</p>
<p>
<img src="/i/eg_cute.gif" />
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
</p>
</body>
</html>
```
[带标题的图像浮动于右侧](/tiy/t.asp?f=csse_float3)
使带有标题的图像浮动于右侧
```
<html>
<head>
<style type="text/css">
div
{
float:right;
width:120px;
margin:0 0 15px 20px;
padding:15px;
border:1px solid black;
text-align:center;
}
</style>
</head>
<body>
<div>
<img src="/i/eg_cute.gif" /><br />
CSS is fun!
</div>
<p>
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
</p>
<p>
在上面的段落中,div 元素的宽度是 120 像素,它其中包含图像。div 元素浮动到右侧。我们向 div 元素添加了外边距,这样就可以把 div 推离文本。同时,我们还向 div 添加了边框和内边距。
</p>
</body>
</html>
```
[使段落的首字母浮动于左侧](/tiy/t.asp?f=csse_float4)
使段落的首字母浮动于左侧,并向这个字母添加样式。
```
<html>
<head>
<style type="text/css">
span
{
float:left;
width:0.7em;
font-size:400%;
font-family:algerian,courier;
line-height:80%;
}
</style>
</head>
<body>
<p>
<span>T</span>his is some text.
This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
</p>
<p>
在上面的段落中,文本的第一个字母包含在一个 span 元素中。这个 span 元素的宽度是当前字体尺寸的 0.7 倍。span 元素的字体尺寸是 400%,行高是 80%。span 中的字母字体是 "Algerian"
</p>
</body>
</html>
```
[创建水平菜单](/tiy/t.asp?f=csse_float5)
使用具有一栏超链接的浮动来创建水平菜单。
```
<html>
<head>
<style type="text/css">
ul
{
float:left;
width:100%;
padding:0;
margin:0;
list-style-type:none;
}
a
{
float:left;
width:7em;
text-decoration:none;
color:white;
background-color:purple;
padding:0.2em 0.6em;
border-right:1px solid white;
}
a:hover {background-color:#ff3300}
li {display:inline}
</style>
</head>
<body>
<ul>
<li><a href="#">Link one</a></li>
<li><a href="#">Link two</a></li>
<li><a href="#">Link three</a></li>
<li><a href="#">Link four</a></li>
</ul>
<p>
在上面的例子中,我们把 ul 元素和 a 元素浮向左浮动。li 元素显示为行内元素(元素前后没有换行)。这样就可以使列表排列成一行。ul 元素的宽度是 100%,列表中的每个超链接的宽度是 7em(当前字体尺寸的 7 倍)。我们添加了颜色和边框,以使其更漂亮。
</p>
</body>
</html>
```
[创建无表格的首页](/tiy/t.asp?f=csse_float6)
使用浮动来创建拥有页眉、页脚、左侧目录和主体内容的首页。
```
<html>
<head>
<style type="text/css">
div.container
{
width:100%;
margin:0px;
border:1px solid gray;
line-height:150%;
}
div.header,div.footer
{
padding:0.5em;
color:white;
background-color:gray;
clear:left;
}
h1.header
{
padding:0;
margin:0;
}
div.left
{
float:left;
width:160px;
margin:0;
padding:1em;
}
div.content
{
margin-left:190px;
border-left:1px solid gray;
padding:1em;
}
</style>
</head>
<body>
<div class="container">
<div class="header"><h1 class="header">W3School.com.cn</h1></div>
<div class="left"><p>"Never increase, beyond what is necessary, the number of entities required to explain anything." William of Ockham (1285-1349)</p></div>
<div class="content">
<h2>Free Web Building Tutorials</h2>
<p>At W3School.com.cn you will find all the Web-building tutorials you need,
from basic HTML and XHTML to advanced XML, XSL, Multimedia and WAP.</p>
<p>W3School.com.cn - The Largest Web Developers Site On The Net!</p></div>
<div class="footer">Copyright 2008 by YingKe Investment.</div>
</div>
</body>
</html>
```
## 相关页面
CSS 教程:[CSS 定位](/css/css_positioning.asp "CSS 定位 (Positioning)")
HTML DOM 参考手册:[cssFloat 属性](/jsref/prop_style_cssfloat.asp "HTML DOM cssFloat 属性")
- CSS3 动画属性(Animation)
- CSS3 @keyframes 规则
- CSS3 animation 属性
- CSS3 animation-name 属性
- CSS3 animation-duration 属性
- CSS3 animation-timing-function 属性
- CSS3 animation-delay 属性
- CSS3 animation-iteration-count 属性
- CSS3 animation-direction 属性
- CSS3 animation-play-state 属性
- CSS3 animation-fill-mode 属性
- CSS 背景属性(Background)
- CSS background 属性
- CSS background-attachment 属性
- CSS background-color 属性
- CSS background-image 属性
- CSS background-position 属性
- CSS background-repeat 属性
- CSS3 background-clip 属性
- CSS3 background-origin 属性
- CSS3 background-size 属性
- CSS 边框属性(Border 和 Outline)
- CSS border 属性
- CSS border-bottom 属性
- CSS border-bottom-color 属性
- CSS border-bottom-style 属性
- CSS border-bottom-width 属性
- CSS border-color 属性
- CSS border-left 属性
- CSS border-left-color 属性
- CSS border-left-style 属性
- CSS border-left-width 属性
- CSS border-right 属性
- CSS border-right-color 属性
- CSS border-right-style 属性
- CSS border-right-width 属性
- CSS border-style 属性
- CSS border-top 属性
- CSS border-top-color 属性
- CSS border-top-style 属性
- CSS border-top-width 属性
- CSS border-width 属性
- CSS outline 属性
- CSS outline-color 属性
- CSS outline-style 属性
- CSS outline-width 属性
- CSS3 border-bottom-left-radius 属性
- CSS3 border-bottom-right-radius 属性
- CSS3 border-image 属性
- CSS3 border-image-outset 属性
- CSS3 border-image-repeat 属性
- CSS3 border-image-slice 属性
- CSS3 border-image-source 属性
- CSS3 border-image-width 属性
- CSS3 border-radius 属性
- CSS3 border-top-left-radius 属性
- CSS3 border-top-right-radius 属性
- CSS3 box-shadow 属性
- Box 属性
- CSS3 overflow-x 属性
- CSS3 overflow-y 属性
- CSS3 overflow-style 属性
- CSS3 rotation 属性
- CSS3 rotation-point 属性
- Color 属性
- CSS3 opacity 属性
- Content for Paged Media 属性
- CSS 尺寸属性(Dimension)
- CSS height 属性
- CSS max-height 属性
- CSS max-width 属性
- CSS min-height 属性
- CSS min-width 属性
- CSS width 属性
- 可伸缩框属性(Flexible Box)
- CSS3 box-align 属性
- CSS3 box-direction 属性
- CSS3 box-flex 属性
- CSS3 box-flex-group 属性
- CSS3 box-lines 属性
- CSS3 box-ordinal-group 属性
- CSS3 box-orient 属性
- CSS3 box-pack 属性
- CSS 字体属性(Font)
- CSS font 属性
- CSS font-family 属性
- CSS font-size 属性
- CSS font-size-adjust 属性
- CSS font-stretch 属性
- CSS font-style 属性
- CSS font-variant 属性
- CSS font-weight 属性
- 内容生成(Generated Content)
- CSS content 属性
- CSS counter-increment 属性
- CSS counter-reset 属性
- CSS quotes 属性
- Grid 属性
- CSS3 grid-columns 属性
- CSS3 grid-rows 属性
- Hyperlink 属性
- CSS3 target 属性
- CSS3 target-name 属性
- CSS3 target-new 属性
- CSS3 target-position 属性
- CSS 列表属性(List)
- CSS list-style 属性
- CSS list-style-image 属性
- CSS list-style-position 属性
- CSS list-style-type 属性
- CSS 外边距属性(Margin)
- CSS margin 属性
- CSS margin-bottom 属性
- CSS margin-left 属性
- CSS margin-right 属性
- CSS margin-top 属性
- Marquee 属性
- 多列属性(Multi-column)
- CSS3 column-count 属性
- CSS3 column-fill 属性
- CSS3 column-gap 属性
- CSS3 column-rule 属性
- CSS3 column-rule-color 属性
- CSS3 column-rule-style 属性
- CSS3 column-rule-width 属性
- CSS3 column-span 属性
- CSS3 column-width 属性
- CSS3 columns 属性
- CSS 内边距属性(Padding)
- CSS padding 属性
- CSS padding-bottom 属性
- CSS padding-left 属性
- CSS padding-right 属性
- CSS padding-top 属性
- Paged Media 属性
- CSS 定位属性(Positioning)
- CSS bottom 属性
- CSS clear 属性
- CSS clip 属性
- CSS cursor 属性
- CSS display 属性
- CSS float 属性
- CSS left 属性
- CSS overflow 属性
- CSS position 属性
- CSS right 属性
- CSS top 属性
- CSS vertical-align 属性
- CSS visibility 属性
- CSS z-index 属性
- CSS 打印属性(Print)
- CSS page-break-after 属性
- CSS page-break-before 属性
- CSS page-break-inside 属性
- CSS 表格属性(Table)
- CSS border-collapse 属性
- CSS border-spacing 属性
- CSS caption-side 属性
- CSS empty-cells 属性
- CSS table-layout 属性
- CSS 文本属性(Text)
- CSS color 属性
- CSS direction 属性
- CSS letter-spacing 属性
- CSS line-height 属性
- CSS text-align 属性
- CSS text-decoration 属性
- CSS text-indent 属性
- CSS text-transform 属性
- CSS unicode-bidi 属性
- CSS white-space 属性
- CSS word-spacing 属性
- CSS3 hanging-punctuation 属性
- CSS3 punctuation-trim 属性
- CSS3 text-emphasis 属性
- CSS3 text-justify 属性
- CSS3 text-outline 属性
- CSS3 text-overflow 属性
- CSS3 text-shadow 属性
- CSS3 text-wrap 属性
- CSS3 word-break 属性
- CSS3 word-wrap 属性
- 2D/3D 转换属性(Transform)
- CSS3 transform 属性
- CSS3 transform-origin 属性
- CSS3 transform-style 属性
- CSS3 perspective 属性
- CSS3 perspective-origin 属性
- CSS3 backface-visibility 属性
- 过渡属性(Transition)
- CSS3 transition 属性
- CSS3 transition-property 属性
- CSS3 transition-duration 属性
- CSS3 transition-timing-function 属性
- CSS3 transition-delay 属性
- 用户界面属性(User-interface)
- CSS3 appearance 属性
- CSS3 box-sizing 属性
- CSS3 icon 属性
- CSS3 nav-down 属性
- CSS3 nav-index 属性
- CSS3 nav-left 属性
- CSS3 nav-right 属性
- CSS3 nav-up 属性
- CSS3 outline-offset 属性
- CSS3 resize 属性
- CSS 选择器参考手册
- CSS 听觉参考手册
- CSS 网络安全字体组合
- CSS 单位
- CSS 颜色
- CSS 合法颜色值
- CSS 颜色名
- CSS 颜色十六进制值
- 免责声明