CSS overflow-x


CSS overflow-x 允許您決定內容的左右邊緣如何處理。

示例

您可以嘗試執行以下程式碼來實現 overflow-x 屬性

即時演示

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            background-color: orange;
            width: 250px;
            height: 45px;
            border: 2px solid blue;
            overflow-x: hidden;
            overflow-y: scroll;
         }
      </style>
   </head>
   <body>
      <h1>Heading</h1>
      <div>Overflow property used here. This is a demo text to show the working of CSS overflow-x and overflow-y.</div>
   </body>
</html>

輸出

更新時間: 30-Jun-2020

245 次瀏覽

開啟你的 職業生涯

透過完成課程獲得認證

開始
廣告