i have something like:
<div id="read_more_right">
<a href="1"><img src='1'></a>
<a href="1"><img src='1'></a>
<a href="1"><img src='1'></a>
</div>
i want to align all those images to the right in a div
I use this
#read_more_right div
{
align: right;
}
but it doesn't work. How can I allign this to the right?
You could use:
#read_more_right a{
float:right;
clear:right;
}
http://jsfiddle.net/pE47J/
It's text-align: right; instead of only align
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With