调整浏览器大小或放大/缩小时的元素位置

时间:2013-07-05 15:57:15

标签: html css web

我是HTML / CSS的新手,即使在浏览器放大/缩小或浏览器调整大小时,我仍然不知道在其位置上维护元素时的一些重要属性。

我设法将一些图像固定在其位置上,但在浏览器调整大小时会失真。

到目前为止,这是我的工作:

HTML

home.php

p.copyright {
  font-weight: bold;
  text-align: center;
  font-style: regular;
}

.clear {
    clear: both;
}

#header {
  display: block;
  width: 80%;
  top: 0;
  z-index: 1;
  text-align: center;
  position: fixed;
  overflow: hidden;
  margin-left:10%;
}

#footer {
  width: 80%;
  position:fixed;
  display: block;
  bottom: 0px;
  overflow: hidden;
  margin-left:10%;
}


#logo {
  position: relative;
  text-align: left;
  margin-left: 0;
  float: left;
  height: 95px;
  width:300px;
}

#navcontainer {
  display: block;
  margin-right:0;
  float: right;
  position: relative;
 }
#textbox {
  position: relative;
  float: right;
  height: 95px;
  width:300px;

}

#htimg, #bb-sb {
  position: relative;
}

#navcontainer ul {
  padding:0px
  list-style-type: none;
  text-align: center;
}

#navcontainer ul { 
  list-style-type: none; 
}

#navcontainer ul li { 
  display: inline;
}

#navcontainer ul li a:hover {
  color: red;
  background-color: #;
}

我完全清楚我的代码非常混乱(我猜不一致)。我还注意到浏览器的行为不一样。我应该采取什么解决方案?

2 个答案:

答案 0 :(得分:1)

解决方案是你学习Twitter Bootstrap:http://twitter.github.io/bootstrap/

这是一组用于CSS的库,它使您的网站“响应”,这意味着它基本上会根据浏览器大小调整大小并移动。

尝试调整大小,您会看到差异:http://twitter.github.io/bootstrap/examples/hero.html

如果您对CSS / HTML的了解很差,那么一件一件地手工做会让您发疯。

答案 1 :(得分:1)

很少有快速的事情可以让它更好一点。

首先删除2个链接rels,只需要一次。 接下来将#Header,table,#footer包装在div中并将css设置为

width:940px;
margin:0 auto;

效果是组件将居中,当您缩小浏览器时,页面不会改变大小。响应性(即,随着大小的变化而改变视图)更加复杂。

虽然我同意PP引导是一个很好的方法,但不知道它是如何做的,从长远来看会导致你的问题

修改

标题,footer.html不需要有标题或html所以它会是。

了header.html

    <div id="footer">

                <img src="images/rd-bb.jpg" align="right" width="300px"/>

           <div id="bb-sb">
                <img src="images/heading-bottom.jpg" width="100%" /> 
           </div>

            <div id="fttext">
                <font size="1"><p class="copyright" ><span style="color:#8e8e8f" >All site content copyright &#169; <span style="color:#0099ff">ELAN Holdings Corporation </span>2013 unless otherwise stated in site credits. All rights reserved. <br />
Website Design by Right<span style="color:#ec4e1b">Angle </span>Corporation</span></p></font>
            </div>
   </div>

Footer.html

   <div id="footer">

                <img src="images/rd-bb.jpg" align="right" width="300px"/>

           <div id="bb-sb">
                <img src="images/heading-bottom.jpg" width="100%" /> 
           </div>

            <div id="fttext">
                <font size="1"><p class="copyright" ><span style="color:#8e8e8f" >All site content copyright &#169; <span style="color:#0099ff">ELAN Holdings Corporation </span>2013 unless otherwise stated in site credits. All rights reserved. <br />
Website Design by Right<span style="color:#ec4e1b">Angle </span>Corporation</span></p></font>
            </div>
   </div>

PHP文件提供了html,head,body标签。

另外我在你的css中注意到你的使用位置:修复了很多没有必要:)

<强> EDIT2

这是一个工作示例的小提琴,我必须删除style.css文件,但你可以看到here它没有工作。