首頁  >  文章  >  web前端  >  CSS中overflow屬性怎麼使用

CSS中overflow屬性怎麼使用

不言
不言原創
2018-12-10 14:19:173961瀏覽

CSS中CSS中CSS中CSS中overflow屬性怎麼使用屬性怎麼使用屬性怎麼使用屬性是常用到的屬性,接下來的這篇文章我們就來看看CSS中CSS中CSS中CSS中overflow屬性怎麼使用屬性怎麼使用屬性怎麼使用屬性的具體用法。

CSS中CSS中CSS中overflow屬性怎麼使用屬性怎麼使用屬性怎麼使用

我們先來看看CSS中CSS中CSS中overflow屬性怎麼使用屬性怎麼使用屬性怎麼使用屬性的值有哪些?

CSS中CSS中CSS中overflow屬性怎麼使用屬性怎麼使用屬性怎麼使用 屬性規定當內容溢出元素方塊時發生的事情。

CSS中CSS中CSS中overflow屬性怎麼使用屬性怎麼使用屬性怎麼使用有以下四個屬性值

visible:初始值,內容不會被修剪,會呈現在元素框之外。

scroll:內容會被修剪,但是瀏覽器會顯示捲軸以便查看其餘的內容。

hidden:內容會被修剪,並且其餘內容是不可見的。

auto:如果內容被修剪,則瀏覽器會顯示捲軸以便查看其餘的內容。

下面我們來詳細說一說CSS中CSS中CSS中overflow屬性怎麼使用屬性怎麼使用屬性怎麼使用屬性的這四個值

我們來看具體的範例

程式碼如下

HTML程式碼

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>CSS CSS中CSS中CSS中overflow屬性怎麼使用屬性怎麼使用屬性怎麼使用</title>
    <link rel="stylesheet" type="text/css" href="sample.css">
  </head>
  <body>
    <div class="hid">
      <p>
        The European languages are members of the same family. Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators.
      </p>
    </div>
    <br>
    <div class="scr">
      <p>
        The European languages are members of the same family. Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators.
      </p>
    </div>
    <br>
    <div class="vis">
      <p>
        The European languages are members of the same family. Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators.
      </p>
    </div>
  </body>
</html>

CSS程式碼

/*hidden*/
div.hid{
  width: 200px;
  height: 100px;
  CSS中CSS中CSS中overflow屬性怎麼使用屬性怎麼使用屬性怎麼使用: hidden;
  background-color: #FF9999;
}
/*scroll*/
div.scr{
  width: 200px;
  height: 100px;
  CSS中CSS中CSS中overflow屬性怎麼使用屬性怎麼使用屬性怎麼使用: scroll;
  background-color: #99FF99;
}
/*visible*/
div.vis{
  width: 200px;
  height: 100px;
  CSS中CSS中CSS中overflow屬性怎麼使用屬性怎麼使用屬性怎麼使用: visible;
  background-color: #9999FF;
}

在瀏覽器上顯示如下結果

當CSS中CSS中CSS中overflow屬性怎麼使用屬性怎麼使用屬性怎麼使用的屬性值是hidden時,效果如下

CSS中CSS中CSS中overflow屬性怎麼使用屬性怎麼使用屬性怎麼使用

在hidden的情況下,不會顯示剩下的部分,也不能捲動顯示剩下的內容。

當CSS中CSS中CSS中overflow屬性怎麼使用屬性怎麼使用屬性怎麼使用的屬性值是scroll,效果如下




CSS中CSS中CSS中overflow屬性怎麼使用屬性怎麼使用屬性怎麼使用

##在scroll的情況下,沒有顯示的內容可以捲動。預設的情況下,文字會在橫向上折回,垂直方向顯示滾動欄。

在css中設定white-space : nowrap(不自動改行的意思),也可以向橫向捲動。

CSS程式碼

div.scr{
  width: 200px;
  height: 100px;
  white-space:nowrap;
  CSS中CSS中CSS中overflow屬性怎麼使用屬性怎麼使用屬性怎麼使用: scroll;
  background-color: #99FF99;
}

效果如下


CSS中overflow屬性怎麼使用


#此外,也可以使用CSS中CSS中CSS中overflow屬性怎麼使用屬性怎麼使用屬性怎麼使用 -x和CSS中CSS中CSS中overflow屬性怎麼使用屬性怎麼使用屬性怎麼使用-y屬性對垂直和橫向的捲軸的顯示進行更為細緻的設定。

當CSS中CSS中CSS中overflow屬性怎麼使用屬性怎麼使用屬性怎麼使用的屬性值是visible時,效果如下

CSS中overflow屬性怎麼使用


visible的情況下,從盒子中溢出顯示。紫色的部分是div盒子。預設的情況下,文字在div的橫向width中被折回,並在縱向方向上顯示。

這個也跟scroll屬性值一樣,在css中設定white-space : nowrap,也可以橫向捲動。


另外,如果不設定盒子的高度,就會自動改變盒子的高度。

div.vis{
  width: 200px;
  /* height: 100px;  */
  CSS中CSS中CSS中overflow屬性怎麼使用屬性怎麼使用屬性怎麼使用: visible;
  background-color: #9999FF;
}

效果如下


CSS中overflow屬性怎麼使用

最後,我們來看看

當CSS中CSS中CSS中overflow屬性怎麼使用屬性怎麼使用屬性怎麼使用屬性值是auto時的具體情況

HTML程式碼


<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>CSS CSS中CSS中CSS中overflow屬性怎麼使用屬性怎麼使用屬性怎麼使用</title>
  <link rel="stylesheet" type="text/css" href="sample.css">
</head>
<body>
<div class="aut">
  <p>
    The European languages are members of the same family. Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators.
      </p>
    </div>
  </body>
</html>

CSS程式碼

div.aut{
	width: 200px;
	height: 100px;
	CSS中CSS中CSS中overflow屬性怎麼使用屬性怎麼使用屬性怎麼使用: auto;
	background-color: red;
}

在瀏覽器上運行的效果和scroll相似

CSS中overflow屬性怎麼使用

以上是CSS中overflow屬性怎麼使用的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn