+ 1
HTML Images and Captions in the same line
How do i put images and title in the same line? like introduce the person and his position(name) , and the second person and so on, how many can we put in the same line?all are in the same line.
2 Answers
+ 7
- you could use float in css
- you could use span instead of h1 for the caption
- you could set the positions absolutely
- you could use tables
first one would be best practice, because it's semantically correct. using tables for layout is outdated. absolute positions could lead to complications on devices with different display resolutions.
0
could you give me some examples? I'm not really good at HTML , I'm new still in learning . thanks buddy !!!