Html.css overflow, css overflow ellipsis
<! DOCTYPE html>
<! DOCTYPE html>
<Html>
<Head>
<Title> </title>
<Meta charset = "UTF-8">
<Style type = "text/css">
Div {
Height: 110px;
Width: 250px;
Border: 1px solid red;
}
. A {overflow: visible;
}
. B {overflow: hidden;
}
. C {overflow: scroll;
}
. D {overflow: auto;
}
</Style>
</Head>
<Body>
<Div class = "a">
I have been working hard and want to be with you. Now, it is impossible to be with you. Everyone once insisted on it. Finally, the person who gave up should give up. Maybe when you recall your youth, I am not the main character, not even the supporting role, but you are my whole youth.
</Div> </br>
<Div class = "B">
I have been working hard and want to be with you. Now, it is impossible to be with you. Everyone once insisted on it. Finally, the person who gave up should give up. Maybe when you recall your youth, I am not the main character, not even the supporting role, but you are my whole youth.
</Div> </br>
<Div class = "c">
I have been working hard and want to be with you. Now, it is impossible to be with you. Everyone once insisted on it. Finally, the person who gave up should give up. Maybe when you recall your youth, I am not the main character, not even the supporting role, but you are my whole youth.
</Div> </br>
<Div class = "d"> I have been working hard and want to work with you. Now, it is impossible to stay behind you. Everyone once insisted on it. Finally, the person who gave up should give up. Maybe when you recall your youth, I am not the main character, not even the supporting role, but you are my whole youth.
</Div> </br>
</Body>
</Html>