
August 5th, 2003, 09:19 PM
|
|
Junior Member
|
|
Join Date: Aug 2001
Location: Riverdale, NYC
Posts: 9
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
probs w/ CSS layout
Hello, how do you make all three images combined without seams, so that they are together in one row?
the page is at http://mkashlev.dyndns.org:7771/ISSI2003-web/div1.html
The code is as follows:
Code:
<?xml version="1.0"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CSS TEST</title>
<style type="text/css">
body {
margin:9px 9px 0 9x;
padding:0;}
#level0 {
background:#FC0;}
#logo {
width:97px;
height:79px;
background-image: url("images/Weizmann-Institute.gif"); background-repeat: no-repeat;}
#vrtop{
height:79px;
width:8px;
margin-left:97px;
padding-left:0px;
background-image: url("images/about_02.gif"); background-repeat: no-repeat;}
#titlebar{
height:79px;
width:521px;
margin-left:105px;
padding-left:0px;
background-image: url("images/title-about.gif"); background-repeat: no-repeat;}
</style>
</head>
<body>
<div id="level0">
<div id="logo">
<div id="vrtop">
<div id="titlebar">
</div>
</div>
</div>
</div>
</body>
</html>
|