Hi all,
I am new to Css ,I try to ix a image in center,but it doesn' seems to work.
main.css
-----------
Code:
img.center {
display: block;
margin-left: auto;
margin-right: auto;
}
and index.php
Code:
<?php
echo 'Hallo';
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<LINK REL=StyleSheet HREF="main.css" TYPE="text/css" MEDIA=screen></link>
<img src="image.png" alt="Suni" class="center" />
It doesn't work in IE but in firefox it works ,what can i do?
thankyou all.