+ 2
What tag can I use to start typing at the top side of a picture on web development
am kind of new to web development and I am kind of stock with little hiccup right now, I created a biography page and wanting to write after adding a picture, am stock with what code will have it start at the top side of the picture. it only starts below any ideas please. I know this isn't for web development but am sure someone can help
3 odpowiedzi
+ 2
its stuck not stock
0
just write the paragraph above the picture in your html, that should put it above the picture. If it still dosnt look right use css to style it and move it exactly were you want it.
0
Also dont forget that your pictures are inline elements so if you dont want anything to the left of the image you need to make it a block element in your css for example:
img {
display: block;
}