1

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

我设法将一些图像固定在它们的位置上,但在浏览器调整大小时会变形。

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

HTML

主页.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: #;
}

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

4

2 回答 2

1

很少有快速的事情应该让它工作得更好一点。

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

width:940px;
margin:0 auto;

效果是组件将居中,当您缩小浏览器时,页面不会改变大小。响应式(即随着大小的变化而改变视图)涉及更多一点。

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

编辑

header,footer.html 不需要 header 或 html 就可以了。

页眉.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>

页脚.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中注意到你的使用位置:固定很多,不需要那个:)

编辑2

这是一个带有工作示例的小提琴,我不得不删除 style.css 文件,但您可以在这里看到它没有工作。

于 2013-07-05T16:10:34.610 回答
1

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

它是一组 CSS 库,可让您的网站“响应”,这意味着它基本上会根据浏览器大小调整大小和移动内容。

尝试调整这个大小,你会看到不同:http: //twitter.github.io/bootstrap/examples/hero.html

如果您对 CSS/HTML 的了解如您所说的那样贫乏,那么一步一步地手工操作会让您发疯。

于 2013-07-05T16:06:30.350 回答