CSS overflow-y


CSS overflow-y 允許您決定如何使用內容的頂部底部邊框。您可以嘗試執行以下程式碼來實現 overflow-y 屬性 −

示例

即時演示

<!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>

輸出

更新於: 22-6 月-2020

188 次瀏覽

開啟您的 職業

完成課程以獲得認證

開始
廣告
© . All rights reserved.