Js fixed DIV height, more than part automatically add scroll bar

Source: Internet
Author: User

We will see that many websites will have an effect. If the content does not exceed the div height, it will be displayed directly. If it is relatively long, there will be a scroll bar effect. Next I will introduce this implementation method to you.

Js Implementation Method

The Code is as follows: Copy code

Function setheight ()
{
Var div = document. getElementById ("event_basicInfo ");
// Div. style. width = "40% ";
Div. style. height = 400;
Div. style. overflow = "auto ";
}
Window. onload = setheight;

Css implementation

Settings for Overflow content Overflow

Overflow horizontal and vertical content overflow settings
Settings for overflow-x horizontal content overflow
Settings for overflow-y vertical content overflow

The values of the preceding three attributes are visible, scroll, hidden, and auto.

Automatically display the scroll bar

The Code is as follows: Copy code

<Div

Style = "height: 100px; width: 100px; overflow: auto;"> test </div>

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.