首頁 > web前端 > css教學 > 主體

css想讓塊靠右該如何實現

王林
發布: 2020-12-02 17:35:05
原創
5211 人瀏覽過

css想讓塊靠右的實作方法:可以透過float屬性來實現,如【float:right;】,表示元素向右浮動。 float屬性用來定義元素在哪個方向浮動,left表示元素向左浮動,right表示元素向右浮動。

css想讓塊靠右該如何實現

本文環境:

  • windows10、css3

  • ##本文適用於所有品牌的電腦

相關元素:

float 屬性定義元素在哪個方向浮動。以往這個屬性總應用於圖像,使文字圍繞在圖像周圍,不過在 CSS 中,任何元素都可以浮動。浮動元素會產生一個區塊級框,而不論它本身是何種元素。

(學習影片分享:

css影片教學

屬性值:

  • left    元素向左浮動。   

  • right    元素向右浮。   

  • none    預設值。元素不浮動,並會顯示在文字中出現的位置。   

  • inherit    規定應該從父元素繼承 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" / alt="css想讓塊靠右該如何實現" >
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>
登入後複製

實作效果:


css想讓塊靠右該如何實現

相關推薦:

CSS教程

以上是css想讓塊靠右該如何實現的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板