Answers for "css for text not going outside the box"

CSS
1

text outside of div

/*to clip out overflowing words*/

p {
  width: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
Posted by: Guest on September-13-2021

Browse Popular Code Answers by Language