Set the overflowing text in the <div> element to be invisible when overflow. - HTML CSS CSS

HTML CSS examples for CSS:Quiz

Description

Set the overflowing text in the <div> element to be invisible when overflow.

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<head>
<style>
div {<!--  www  . j  a  va2  s  .com-->
    background-color: pink;
    width: 200px;
    height: 200px;
    overflow: hidden;
}
</style>
</head>
<body>

<div>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</div>

</body>
</html>

Related Tutorials