css實現隱藏捲軸的代碼案例

來源:互聯網
上載者:User
overflow 屬性規定當內容溢出元素框時發生的事情

①visible 預設值。內容不會被修剪,會呈現在元素框之外。
②hidden 內容會被修剪,並且其餘內容是不可見的。
③scroll 內容會被修剪,但是瀏覽器會顯示捲軸以便查看其餘的內容。
④auto 如果內容被修剪,則瀏覽器會顯示捲軸以便查看其餘的內容。
⑤inherit 規定應該從父元素繼承 overflow 屬性的值。

例子一:table做容器且【隱藏】捲軸

注意:{①table的dispaly設定為block,否則不會出現捲軸}

要先把table放到一個p中,p的長度和寬度要固定

如果只想垂直方向有滾動,可以設定外面p屬性overflow-x: hidden;

例子:

<html lang="en"><head>    <meta charset="UTF-8">    <title>捲軸</title>    <style type="text/css">        *{margin: 0;padding: 0}        .area{width: 300px;height: 600px;background-color: #BFEFFF;            overflow-x: hidden;position: relative}        .area table{display: block;width: 320px;height: 600px;            background-color: #00D685;overflow-y: auto;}        .area table tr td{height: 200px;width: 300px}    </style></head><body><p class="area">    <table>        <tr><td>1</td></tr>        <tr><td>2</td></tr>        <tr><td>3</td></tr>        <tr><td>4</td></tr>        <tr><td>5</td></tr>        <tr><td>6</td></tr>    </table></p></body></html>

這裡注意修改table屬性

例子二:

ul作容器,隱藏捲軸

<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title>捲軸</title>    <style type="text/css">        *{margin: 0;padding: 0}        .area{width: 300px;height: 600px;background-color: #BFEFFF;            overflow-x: hidden;        position: relative}        .area ul{height: 100%;width: 320px;background-color: #00D685;list-style: none;        overflow-x: hidden;overflow-y: auto}        .area ul li{height: 200px;width: 100%;background-color: #cccccc}    </style></head><body><p class="area">    <ul>        <li>1</li>        <li>2</li>        <li>3</li>        <li>4</li>        <li>5</li>        <li>6</li>    </ul></p></body></html>

原理:在容器外面再嵌套一層 overflow:hidden 內部內容再限制尺寸和外部嵌套層一樣,就變相隱藏了。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.