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 次浏览

开启你的 职业生涯

通过完成课程获得认证

开始
广告
© . All rights reserved.