Jump to content

footer


GumaNoiD
 Share

Recommended Posts

Есть футер например такой

64b27e1d153d.gif

его код такой

<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Документ без названия</title>
<style type="text/css">
<!--
#footer {
height: 50px;
width: 750px;
margin:0 auto;
background:url(footer.gif)
}
-->
</style>
</head>

<body>
<div id="footer"></div>
</body>
</html>

А вот как теперь сделать кликабельную кнопку например 88*31!(горизонтально я могу сделать float а во как сделать по-середине вертикально...)

Link to comment
Share on other sites

Если это возможно используйте margin или padding:

...
<style type="text/css">
<!--
#footer {
height: 50px;
width: 750px;
margin:0 auto;
background:url(footer.gif);
text-align: center
}

.button {width: 88px; height: 31px; margin: 9px 0}
-->
</style>
</head>

<body>
<div id="footer">
<input type="button" class="button" value="Button" />
</div>
</body>
</html>

если нужно сделать вертикальное универсальное выравнивание, то для нормальных браузеров это делается имитацией блока как ячейки таблицы: display: table-cell и vertical-align: middle, а для IE как то по другому, поищите в гугле, там полно статей на эту тему.

Edited by Zippovich
Link to comment
Share on other sites

  • 2 weeks later...
Guest
This topic is now closed to further replies.
 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy