您好,登錄后才能下訂單哦!
這篇文章將為大家詳細(xì)講解有關(guān)float在css指的是什么意思,小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
在css中float的意思是“浮動(dòng)”,float屬性用于定義元素的浮動(dòng)方向,當(dāng)元素設(shè)置了float屬性時(shí),元素就會(huì)浮動(dòng)在其他元素上,它會(huì)根據(jù)屬性值向左、向右或者不浮動(dòng),語(yǔ)法為“元素{float:value;}”。
本教程操作環(huán)境:windows10系統(tǒng)、CSS3&&HTML5版、Dell G3電腦。
css中,float屬性用于定義元素在哪個(gè)方向浮動(dòng),語(yǔ)法為“元素{float:value}”;當(dāng)屬性的值為“l(fā)eft”可設(shè)置元素向左浮動(dòng);當(dāng)屬性的值設(shè)置為“right”可設(shè)置元素向右浮動(dòng);當(dāng)屬性的值設(shè)置為“none”可設(shè)置元素不浮動(dòng)。
float屬性定義元素在哪個(gè)方向浮動(dòng)。以往這個(gè)屬性總應(yīng)用于圖像,使文本圍繞在圖像周圍,不過(guò)在 CSS 中,任何元素都可以浮動(dòng)。浮動(dòng)元素會(huì)生成一個(gè)塊級(jí)框,而不論它本身是何種元素。
如果浮動(dòng)非替換元素,則要指定一個(gè)明確的寬度;否則,它們會(huì)盡可能地窄。
假如在一行之上只有極少的空間可供浮動(dòng)元素,那么這個(gè)元素會(huì)跳至下一行,這個(gè)過(guò)程會(huì)持續(xù)到某一行擁有足夠的空間為止。
示例如下:
<html> <head> <style type="text/css"> img { float:right } </style> </head> <body> <p>在下面的段落中,我們添加了一個(gè)樣式為 <b>float:right</b> 的圖像。結(jié)果是這個(gè)圖像會(huì)浮動(dòng)到段落的右側(cè)。</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>
輸出結(jié)果:
關(guān)于“float在css指的是什么意思”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。