Jump to content
  • 0

Как сделать полоску сверху?


Awe
 Share

Question

У меня возникла проблема. Мне надо создать начальную страницу для сайта. Она должна быть такая: сверху впритык к верхнему краю страницы должна быть полоска (с фоном, может даже фон-картинка) на которой посередине ссылка на главную страницу...а под полоской посередине картинка вот макет:

i43072_123.jpg

С помощью таблиц не получаеться, так как я непомню как убрать отступ страницы, тоесть вот это:

i43077_123.jpg

Прошу, помогите!

Зарание благодарен!

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

убрать отступ страницы

body

{

margin: 0;

padding: 0;

}

Убрать отступы таблицы

<table border="0" cellpadding="0" cellspacing="0">

Нет такой буквы позиции ;)

 style="position:top"

И всетаки приведите код, в котором картинка отступает, в приведенном коде img не был замечен

Link to comment
Share on other sites

  • 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>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />
<title>Документ без названия</title>
<style>
html, body {
margin:0;
padding:0;
width:100%;
height:100%;
}
#wrap {
margin:0;
padding:0;
width:100%;
height:100%;
position:relative;
}
#header {
text-align:center;
background-color:#000000;
width:100%;
height:50px;
}
#header h1 {
font: bold 12px Verdana;
text-decoration: none;
color:#FFFFFF;
margin-top: 15px;
}
#content {
position:absolute;
top:250px;
width:100%;
height:100%;
text-align:center;
}
#content img {
border:#000000 solid 1px;
width:200px;
height:200px;
}
</style>
</head>
<body>
<div id="wrap">
<div id="header"><a href="#"><h1>Ссылка</h1></a></div>
<div id="content"><img src="images.jpg" alt="Картинка"></div>
</div>
</body>
</html>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 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