ben
ben

Reputation: 29817

How can I put text into a defined box?

jsFiddle

In this jsFiddle I've got two images and then some text. I want it to appear like this:

enter image description here

note: the images and text should be sitting on the same horizontal axis, the text is not supposed to be higher

So what I'm trying to do is make the text appear over multi-lines within a box with a width of 150. How can I do this?

Upvotes: 1

Views: 78

Answers (1)

Robert Koritnik
Robert Koritnik

Reputation: 105091

Is this what you're trying to do?

As you can see I've only changed your CSS a bit by adding a display:inline-block to your text container.

Upvotes: 3

Related Questions