0
Aling is not working
3 Réponses
+ 5
Ya, because it's align not Aling
https://www.sololearn.com/learn/HTML/1029/?ref=app
+ 2
I think you want to align.
So, in HTML 5 you cannot use align attribute to inline elements for changing their alignment. So use block level element and then use align attribute.
e.g. <img src="image.png" align="center">
The above example will not work.
Instead use
<p align="center">
<img src="image.png">
</p>
This will work.
Happy coding