Jump to content
  • 0

не получается макет из трех колонок


ЕленаОлефир
 Share

Question

Ребята помогите пож-ста! создаю сайт с основным блоком в центре и боковыми фиксированными с фоновым изображением. мало того что картинка отображается не на всю выбранную ширину, в разных браузерах по-разному. так еще и когда делаешь окошко браузера меньше центральный блок перекрывает левый.....а фон в правом боковом блоке вообще не отображается( скажите пож-ста что я делаю не так? вот код:

<!DOCTYPE html>

<html>
<head>
<meta charset="utf-8">
<title>AM-RECORDS</title>
<link rel="shortcut icon" type="icon" href="images/12.png">
<link href="style.css" rel="stylesheet" type="text/css" media="all">
</head>
<body>
   <div id="block-left"></div>
   <div id="container"></div>
   <div id="block-right"></div>
</body>
</html>
и в CSS:
*{
margin:0;
padding:0;
}
html, body{
height: 100%;
width: 100%;
-webkit-background-size: content-box;
-moz-background-size: content-box;
box-sizing:content-box;
} block-left{

width:20%;
height:100%;
float:left;
background:#000080;
background-image:url(images/left.jpg);
background-attachment:fixed;
background-repeat: no-repeat;
background-size: 100% contain;
-webkit-background-size: contain;
-moz-background-size: contain;
display:block;
box-sizing:contain;
}

container{

width:60%;
height:100%;
float:left;
background:#006400;
-webkit-background-size: border-box;
-moz-background-size: border-box;
box-sizing:border-box;
display:block;
}

block-right{

width:20%;
height:100%;
float:left;
background:#CD5C5C;
background-image:url(images/right.jpg);
background-attachment:fixed;
background-repeat: no-repeat;
background-size: 100% contain;
-webkit-background-size: contain;
-moz-background-size: contain;
display:block;
box-sizing:contain;
}

 

 

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

# перед block-left, container и block-right поставьте.

Как блоки могут быть фиксированными, если ширина задана в % ?  

html, body{height: 100%;width: 100%;-webkit-background-size: content-box;-moz-background-size: content-box;box-sizing:content-box;}

Это зачем вообще ?

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