更有效/适当的方式来编写此代码?

时间:2016-06-12 17:48:43

标签: html css responsive-design media-queries

所以我刚刚开始学习响应式网页设计和在我的CSS中使用媒体查询。我已经了解了如何使手机具有响应性和优化性能。

如果有人感到无聊或有兴趣看到这个,你能否告诉我,如果我走在正确的轨道上,或者我是否违反任何严格的编码规则?哈。

以下是我正在研究的部分内容:(这是指移动的小盒子,只是忽略背景)

<style>
  
  .three img {
  	position: relative;
    top: 0;
  }
  
  #shoutout{
   	position: absolute;
    margin: 40% 45%;
    border: 2px solid black;
    background-color: white;
    padding: 7% 14%;
    z-index: 1;
  }
  
  .sotext p{
  	font-size: 120%;
    font-weight: bold;
    text-align: center;
  }
  
  @media screen and (max-width: 1023px){
   	 #shoutout{
      	text-align: center;
      	font-size: 75%;
      	margin-top: 40%;
    }
    
    .sotext p{
      	text-align: center;
      	font-size: 100%;
    }
  }
  
  @media screen and (max-width: 740px){
    #shoutout{
      	text-align: center;
      	margin-top: 35%;
      	margin-left: 45%;
    }
    
    .sotext p{
      	text-align: center;
      	font-size: 60%;
    }
  }
</style>
<head>
  <!-- Header Placeholder-->
</head>

<body>
  
  <div>
    <section id="shoutout">
        <!-- shoutut box -->
          <div class="sotext">
            <p>Placeholder Text</p>
          </div>
    </section>
    <section class="three">
      <img       src="http://static1.squarespace.com/static/55bed56ee4b04fdc6e0dd0d8/t/575d8fed4d088eb0ab810e52/1465749487419/mother_daughter.png" alt="shoutout image" />
    </section>
  </div>
  
<body>

1 个答案:

答案 0 :(得分:0)

小调整

&#13;
&#13;
html, body {
  height: 100%;
  width: 100%;
}

.background {
  background-image:url(http://static1.squarespace.com/static/55bed56ee4b04fdc6e0dd0d8/t/575d8fed4d088eb0ab810e52/1465749487419/mother_daughter.png);
  background-position: center left;
  background-size: cover;
  width: 100%; 
  height: 100%;
}

#shoutout{
   	position: absolute;
    margin: 40% 45%;
    border: 2px solid black;
    background-color: white;
    padding: 7% 14%;
    z-index: 1;
  }
  
  .sotext p{
  	font-size: 1.2em;
    font-weight: bold;
    text-align: center;
  }
  
  @media screen and (max-width: 1023px){
   	 #shoutout{
      	text-align: center;
      	font-size: 0.75em;
      	margin-top: 40%;
    }
    
    .sotext p{
      	font-size: 1em;
    }
  }
  
  @media screen and (max-width: 740px){
    #shoutout{
      	margin-top: 35%;
      	margin-left: 45%;
    }
    
    .sotext p{
      	font-size: 0.6em;
    }
  }
&#13;
  <div class="background">
    <section id="shoutout">
        <!-- shoutut box -->
          <div class="sotext">
            <p>Placeholder Text</p>
          </div>
    </section>
  </div>
&#13;
&#13;
&#13;

我个人使用背景图片而不是img标签,让您对显示器有更多的控制权。我也使用ems而不是字体大小的百分比。正如我在评论中所说,删除重复。