Parašė allenas.· 2011 Lie. 3 15:07:35
#7
2. Kodėl parašius .css faile tarkime
padding-bottom: 20px; man jis neina į apačią? O parašius
padding: 20px; paveikslėlis eina į šoną tik.
.CSS failas:
/*allenas coding*/
body {
background-image: url(images/bg.png);
margin: 0px;
padding: 0px;
}
.logo {
background-image: url(images/logo.png);
width: 400px;
height: 200px;
background-repeat: no-repeat;
padding-top: 70px;
}
.HTML failas:
<!DOCTYPE <span style="border-bottom: 1px dotted black;">html</span> 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>Allenas design @ Counter strike</title>
<link href="stiliai.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div align="center">
<div class="logo"></div>
</body>