Lining up List
i have developed site , finding hard prices aligned in different browsers. aa using following code , want £ prices lign up. find if aligned in safari in firefox , explorer not , visa versa. can help?
<ul>
<li>east midlands.........£65.00</li>
<li>birmingham............£70.00</li>
<li>luton.........................£90.00</li>
<li>stansted.................£130.00</li>
<li>heathrow..............£145.00</li>
<li>gatwick..................£190.00</li>
<li>manchester..........£190.00</li>
</ul>
site @ www.psweb-test1.co.uk/services.html
in opinion information data use table arrange it.
alternatively try definition list:
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>untitled document</title>
<style>
dl {
margin: 0;
padding: 0;
width: 500px;
}
dt {
float: left;
text-align: left;
margin: 0;
padding: 0 0 4px 0;
}
dd {
text-align: right;
width: 200px;
margin: 0;
padding: 0 0 4px 0;
}</style>
</head>
<body>
<dl>
<dt>east midlands</dt>
<dd>£65.00</dd>
<dt>birmingham</dt>
<dd>£70.00</dd>
<dt>luton</dt>
<dd>£90.00</dd>
<dt>stansted</dt>
<dd>£130.00</dd>
<dt>heathrow</dt>
<dd>£145.00</dd>
<dt>gatwick</dt>
<dd>£190.00</dd>
<dt>manchester</dt>
<dd>£190.00</dd>
</dl>
</body>
</html>
More discussions in Dreamweaver support forum
adobe
Comments
Post a Comment