无法在输出

时间:2016-07-12 17:46:00

标签: html css layout

我在前端开发方面很陌生。我只是在试验HTML / CSS。制作一张简单的海报之后,我试图制作简单的自由式(不是针对任何类型的网站)页面布局。

这就是我所做的。

https://github.com/imdpm/CodoSapiens/tree/master/LayAtt

我试图添加"内容"类型划分。我已经在style.css中为它创建了一个样式,并在index.html中调用它而没有任何内容。只是分裂。

但是输出没有任何"内容"师。我似乎无法理解我犯了什么错误。

有人可以帮忙吗?



body{
  background-image: url("BackIm.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 100% 100%;
}
#icon{
  position: absolute;
  left: 5px;
  height:40px;
  width:40px;
}
.topmenu{
  background-color: #001a00;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: center;
  padding: 0;
  border-bottom: 1px solid red;
}
.sidemenu{
  background-color: darkgrey;
  color: black;
  position: left fixed relative;
  margin: 190px 80px 0 40px;
  padding: 8px 6px 0 8px;
  border: 1px solid black;
  border-radius: 8px;
  max-width: 155px;
  font-size: 30px;
  font-family: sans-serif;
}
.banner{
  background-color: #FFA500;
  position: absolute;
  top:44px;
  left: 0;
  right: 0;
  height: 125px;
  border-bottom: 1px solid #228B22;
}
.content{
  background-color: #5651F3;
  position: relative;
  top: 60px;
  right: 30px;
  left: 25px;
}
#link{
  color: black;
  text-decoration: none;
  padding: 2px 0 1px 0;
  color:grey;
  font-size:35px;
  font-family:"Times New Roman";
  font-weight:bold
}
a{
  text-decoration: none;
  color: black;
  padding: 0;
}
hr{
  border: 0;
  height: 1px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

<html>
  <head>
    <title>LayoutAtt</title>
    <link rel="stylesheet" type="text/css" href="style.css">
  </head>

  <body>
    <div class="topmenu">
      <img id="icon" src="https://github.com/imdpm/CodoSapiens/blob/master/LayAtt/BackIm.jpg?raw=true" alt="Icon">
      <a id="link" href="index.html">BackToBeg</a>
    </div>

    <div class="banner">
    </div>

    <div class="sidemenu">
      <a href="index.html">BackToBeg</a><hr>
      <a href="index.html">BackToBeg</a><hr>
      <a href="index.html">BackToBeg</a><hr>
      <a href="index.html">BackToBeg</a><hr>
      <a href="index.html">BackToBeg</a><hr>
    </div>

    <div class="content">      
    </div>
    
  </body>
</html>
&#13;
&#13;
&#13;

1 个答案:

答案 0 :(得分:0)

您需要为内容div添加宽度和高度。 试试这个

.content{
  background-color: #5651F3;
  position: relative;
  top: 60px;
  right: 30px;
  left: 25px;
  width:100px;
  height:100px;
}

使用浏览器中的检查器查看正在呈现的html和css。您可以看到哪些样式应用于哪些元素。