How to hide content that overflows the DIV border

php中世界最好的语言
Release: 2017-11-20 15:30:18
Original
3635 people have browsed it

When we usually layout, sometimes the content exceeds the width and height of our DIV border, which will cause the web page to be misaligned and messy, which is particularly unsightly and the user experience is extremely poor. How do we hide the overflowing DIV border? What about the content? Today I bring you this tutorial.

CSS style to implement automatic hiding of content that overflows beyond the width and height of the DIV border

Usually when we layout, some text content will exceed the height of the overflow limit, and somePicturewill burst the DIV and cause misalignment of the web page.

So we need to solve how to use CSS to automatically hide content that exceeds the set CSS width and CSS height without breaking the DIV layout.

Especially in IE6, if the content exceeds the height and width of theobject, it will be burst and increased in height. At this time, we can use the following solutions.

1. Solve the CSS style

At this time we can use CSSoverflowstyle solution:

Corresponding style overflow:hidden

Div{overflow:hidden}
Copy after login

After this setting, if the DIV object is set to a certain width and height, adding overflow:hidden at this time will hide the content including images that exceeds the width and height of the DIV.

Related reading: css implements overflow and displays ellipses for text content that exceeds it

2. Case of hiding excess content

1. Hide text content that exceeds object width and height

If we align the object beautifully in a layout, sometimes we need to set the height and width of the object and then fix it. At this time, we need to ensure that no matter how much content and text there is, the layout will not exceed the set width and height. At this time, we need overflow:hidden to help.

CSS code:

 Html代码:
Copy after login

欢迎,

Copy after login

Setting overflow:hidden in this way will hide the content that cannot fit outside the set width and height of the object no matter how much content is there.

2. Case of hiding the part of the image that exceeds the width of the object

Here, set an object box with a certain CSS width and CSS height, put a large image, and then use overflow:hidden to hide the excess part. .

Css code

Copy after login

Html code

Copy after login


Set the width and height, although the picture is large

To summarize, If you want the content to not exceed the width and height limits set by the object, you only need to use overflow:hidden to hide the excess parts.

Related reading:

How to set the scroll bar for DIV

How to use CSS to center the DIV

Introduction to how to set DIV scroll bar properties and styles

The above is the detailed content of How to hide content that overflows the DIV border. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!