現在の応答性ページの幅は100%で、スケルトンを使用して正規化しています。私はデザイナーと仕事をしています。彼女のデザインにはページの一方の端から他方の端に向かう裂け目があるので、私は彼女の固定幅を与えることをやめています。この涙のデザインにはカーブがあるので、私はそれを繰り返すことはできません。固定幅の応答性のあるページを設計する方法
誰かが私にこれをどのように実装できるか考えてもらえますか?
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<meta http-equiv="cleartype" content="on" />
<title></title>
<meta name="description" content="">
<meta name="author" content="">
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="MobileOptimized" content="width" />
<meta name="HandheldFriendly" content="true" />
<meta name="viewport" content="width=device-width" />
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" href="css/common1.css">
</head>
<body>
<!-- Primary Page Layout
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<div id="wrapper">
<div id="top" class="row">
<div class="container">
<div class="twelve columns">Header</div>
</div>
</div>
<div id="tear" class="row">
<div class="container">
<div class="twelve columns">tear</div>
</div>
</div>
<br />
<div id="Credits" class="row">
<div class="container">
<div class="twelve columns">Footer</div>
</div>
</div>
</div>
<!-- End Document –––––––––––––––––––––––––––––––––––––––––––––––––– -->
</body>
</html>
はこちらcommon1.cssからの私のCSSです:
* {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
html, body{
height:100%;
}
#wrapper{
max-width: 1500px; // or whatever you need
}
#top {
width: 1500px;
background: #D9F3F3;
border-bottom: 3px solid #50B848;
padding: 8px;
margin: 0px;
font-weight: 700;
color:#58595b;
font-size: 16px;
}
.textRight {
text-align: right;
}
#tear {
width: 1500px;
font-size: 16px;
background-color: #1C6183;
color: #ffffff;
padding: 20px 10px;
letter-spacing: 0.09em;
border-top: 3px solid #50B848;
position: absolute;
background-image:url(../images/divider.png);
background-repeat: no-repeat;
background-position-x:right;
background-position-y:center;
background-position:right;
background-size:auto;
}
#Credits {
width: 1500px;
font-size: 16px;
background-color: #1C6183;
color: #ffffff;
padding: 20px 10px;
letter-spacing: 0.09em;
border-top: 3px solid #50B848;
position: absolute;
background-image:url(../images/wave-pattern--lg.png);
background-repeat: no-repeat;
background-position-x:right;
background-position-y:center;
background-position:right;
background-size:auto;
}
ジョー
あなたのコードなしで誰が知っている、この問題は広い方法です。 –
umm 'width:1000px'を使う、' px'は設定された幅です.... –