0
How do I style separate img files with css?
I have my logo img in the header. Next I want a picture going across the width of my page. If I use img { and Imput my css here } nothing will be affected because I have already styled with img tag... Any advice??
3 Answers
+ 3
The usual practise is add different class to the img tags, and style accordingly.
+ 2
Try add this into head tag
<style>
img {
width: 100vh;
}
</style>
0
That's useful for sure, but what if I wanted two img files in the body tag of different size?