【问题标题】:Getting error in website width in fixed layout website在固定布局网站中获取网站宽度错误
【发布时间】:2014-07-11 22:42:32
【问题描述】:

我在固定布局网站中遇到问题。

我已经手动编码,不知道如何修复它。我还在学习阶段。 你能告诉我我做错了什么吗?

问题: 您可以检查工作here。将文件上传到免费域。

或检查 js fiddle...

<div class="navbar">
    <div class="wrapper">
        <h3><a class="" href="#intro">Nature Experience</a></h3>
    </div>
</div>
<section id="intro">
    <div class="wrapper slogan">
        <h2>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type </h2>
    </div>
</section>
<section id="second">
    <div class="wrapper">
        <h3 class="">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type </h3>
        <p class=" ">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type </p>
        <div class="container">
            <div class="blogcontainer ">
                <div class="row">
                    <div class="text">
                        <strong class="">Lorem Ipsum is simply dummy</strong>
                        <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
                    </div>
                </div>
                <div class="row">
                    <div class="text">
                        <strong class="">Lorem Ipsum is simply dummy</strong>
                        <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
                    </div>
                </div>
                <div class="row">
                    <div class="text">
                        <strong class="">Lorem Ipsum is simply dummy</strong>
                        <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
                    </div>
                </div>
            </div>
        </div>
    </div>
</section>
<section id="contact">
    <div class="wrapper">
        <h3 class="">Lorem Ipsum is simply dummy text of the printing</h3>
        <div class="container">
            <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
            <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
            <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
        </div>
    </div>
</section>
<section id="footer">
    <div class="wrapper">
        <div class="left">
            <a href="#">CONTACT</a>
        </div>
    </div>
</section>


/*Reset css*/
html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,del, dfn, em, img, 
ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, 
thead, tr, th, td,article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
body, html {
    height: 100%;
}
body{
    font-family: 'Arvo', serif;
    text-align: center;
}
h3{
    font-size: 30px;
}
.wrapper{
    width: 1140px;
    margin: 0 auto;
}
.container{
    width: 1100px;
    padding: 10px 20px;
    float: left;
}
.navbar {
    margin: 0;
    padding: 15px 20px;
    position: fixed;
    width: 100%;
    background: #fff;
    z-index: 999;
}
#intro {
    background: url("http://hdwallpaperszon.in/wp-content/uploads/2014/06/HD-Black-Car-Wallpaper_31.jpg") no-repeat fixed 50% 0 / cover  rgba(0, 0, 0, 0);
    margin: 0;
    position: relative;
    width: 100%;
    height: 100%;
}
#intro h2 {
    font-size: 24px;
}
#intro .slogan {
    padding-top: 130px;
}
#second{
    float: left;
    width: 100%;
    padding: 65px 0 55px;
    background: #666666;
    color: #fff;
}
#second  .blogcontainer{
    float: left;
}
#second  .blogcontainer .row{
    float: left;
    text-align: left;
    padding: 10px 0;
}
#second  .blogcontainer .row .text{
    font-size: 18px;
    line-height: 26px;
    padding: 14px 0;
}
#contact{
    float: left;
    width: 100%;
    padding: 65px 0 70px;
    background: #ECE8E1;
    color: #000;
}
#footer{
    float: left;
    width: 100%;
    padding: 20px 0 35px;
    background: #666666;
    color: #fff;
}
#footer .left{
    float: left;
    width: 50%;
    text-align: left;
    padding-top: 25px;
}
#footer .left a{
    color: #fff;
    font-size: 20px;
}

谢谢

【问题讨论】:

  • 张贴图片无助于制作小提琴并问你问题?
  • 在 Firefox 中似乎没问题(?)
  • 您使用固定宽度的.container.wrapper 类。改变它 t0 100%
  • 这是我上传代码的地方:coder.esy.esCheck。

标签: html css


【解决方案1】:

尝试做this

CSS

 body {
min-width: 1140px;
}

【讨论】:

  • 否 :(。通过这个网站将变得响应,我需要修复它,没有内容包装。你在 facebook 中看到,当你减少浏览器宽度/分辨率时,内容不会换行,但出现水平滚动。我需要相同的。
  • 是的 :) 但我不明白为什么 body 要求最小宽度?你能解释一下吗?
  • 因为你有 .wrapper 和 .container 宽度:1140px; body 获取窗口的宽度。小于 1140 像素。
  • 我不能投票,但我只能接受。再次感谢。
【解决方案2】:

我认为您已将像素用于主体或容器分割宽度。尝试 % 作为宽度。

例如

body or container (which u have used) {
width:100%;
margin-left:auto; 
margin-right: auto; 
}

另请参阅图像尺寸宽度和高度。它应该是 % 而不是像素,因为它是固定大小的单个图像。

因为您的示例页面在 1024 x 768 或更高的分辨率下看起来不错(在精确的 1024 x 768 分辨率下看起来也有些问题......)。

编辑:

更新了你的包装器和容器 css 代码

JSFIDDLE

现在您可以通过更改此 jsfiddle 中的结果部分宽度和高度来查看差异

【讨论】:

猜你喜欢
  • 1970-01-01
  • 2010-10-24
  • 1970-01-01
  • 2015-05-30
  • 2010-11-21
  • 1970-01-01
  • 1970-01-01
  • 2014-10-02
  • 2011-05-09
相关资源
最近更新 更多