-2

How do I style the text so that in smaller screens it will stay as a single line and the omitted text is viewable via scroll? I use foundation framework and grid-container.

Reddit has this effect where the details of the post is scrollable then the message is within the box.

Mjguel
  • 17
  • 2

1 Answers1

0

Try the CSS overflow property,

div.ex1 {
  overflow: scroll;
}

Learn more here

pasanjg
  • 566
  • 5
  • 13