CSS如何將超出的內容隱藏

admin發表於2017-02-11
有時候容器中的內容會超出容器的邊界,顯得非常的不好看,所以需要將超出的部分隱藏,下面簡單介紹一下實現此效果的方法。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
.parent {
  width: 200px;
  height: 200px;
  border: 1px solid red;
}
.children {
  width: 240px;
  height: 250px;
  border: 1px solid blue;
}
</style>
</head>
<body>
  <div class="parent">
    <div class="children"></div>
  </div>
</body>
</html>

以上程式碼中的內容超出了邊界,那麼我們可以使用將容器的overflow屬性值設定為hidden即可。

上面的設定的是將所有超出的內容都隱藏,我們也可以設定橫向或者縱向超出內容的隱藏。程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
.parent {
  width: 200px;
  height: 200px;
  border: 1px solid red;
  overflow: hidden;
}
.children {
  width: 240px;
  height: 250px;
  border: 1px solid blue;
}
</style>
</head>
<body>
  <div class="parent">
    <div class="children"></div>
  </div>
</body>
</html>

以上程式碼中,子div無論是縱向還是橫向都超出了邊界。如果我們只想隱藏橫向超出的內容,可以使用如下程式碼:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
.parent {
  width: 200px;
  height: 200px;
  border: 1px solid red;
  overflow-x: hidden;
}
.children {
  width: 240px;
  height: 250px;
  border: 1px solid blue;
}
</style>
</head>
<body>
  <div class="parent">
    <div class="children"></div>
  </div>
</body>
</html>

相關文章