Jump to content

nadavvin

Members
  • Posts

    7
  • Joined

  • Last visited

Posts posted by nadavvin

  1. I want to do two layouts which placed in the same row.I don't want to use in absolute or float:

    <!DOCTYPE htmlPUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html><head>	<title>test</title>	<style>	body {	direction:rtl;	width:700px;	display:block;	}	#a	{		width:100%;		height:30px;		background-color:#ff0000;	}	#b	{ 		width:25%; 		margin-left:75%; 		height:50px; 		background-color:#00ff00;	}	#c	{		width:25%;		margin-right:75%;		height:50px;		background-color:#0000ff;	}	</style></head><body>	<div id="a">	</div>	<div id="b">	</div>	<div id="c">	</div></body></html>

    How do I do it?

×
×
  • Create New...