Hi following is my complete html.
<html>
<head>
<style type="text/css">
#div1{width:1000px;height:700px;border:1px solid blue;margin:0px auto;}
#div2{width:200px;height:300px;border:1px solid blue; margin-right:10px; margin-top:10px;}
</style>
</head>
<body>
<div id="div1">
<div id="div2">
</div>
</div>
</body>
</html>
the problem is div2 has margin-right property of 10px.
but it is not working.div2 still displays in left side.
how to solve this
Regards
Baiju