0
Image center
A quick question: how should I send a image to the center in HTML/Css?
3 ответов
+ 2
Using (margin: 0 auto) for your image either in html with <style> tag or in css
+ 1
You can use the align attribute in html and set it to center or use it in css
0
/* CSS */
img {
display: block;
margin: 0 auto;
}
Remember that you can use search engines to search these questions on the internet.