I am doing a website and I don’t know how to do aligning of images wrapped in < li >.
Here you can see the page – http://www.dansid.cz/praginfo/services.php?l=de
I need those images to automatically align on center, how can I do that with CSS?
You can see the CSS etc. by right clicking in Firefox or Chrome and clicking Inspect Element.
Thanks for your answers 🙂
By images in
lis i assume you’re referring to the thumbnails found in your site, you can center them by declaring themdisplay:inline-blockinstead offloat:leftand then simply centering them in their container by setting thetext-align:centerproperty in it, like so:Note: remove the float property.