如何确保我网站上的内容符合浏览器的大小部分?

时间:2017-03-18 00:03:34

标签: html css

我正在为大学的作业项目建立自己的网站,并想知道是否有人可以帮助我解决我遇到的这个重大问题。

当我在我的macbook上打开我的网站的html文件,其尺寸为2880 x 1800在家时,我必须将Google Chrome浏览器的视图大小调整为80%,以使网页的大小比例。但是,在大学期间,该网站的大小比例自动变大。我担心的是,正在审核我的网站的人对他们来说是不合适的。

是否有可以根据用户显示器大小自动调整网站视图的代码?

我见过一些网站使用以下html类型的代码。这是否有助于内容的位置以适应和调整显示器和浏览器的尺寸。

.image:hover {
  -webkit-transform:scale(1.2); 
          transform:scale(1.2);

max-width: 100%;

当我在我的Macbook上的“开发”选项中使用“进入响应式设计模式”时,如果我打开在线投资组合,您可以清楚地看到我对内容进行编码的方式,它不是大小比例并已移动。

enter image description here

以下是我希望它看起来的实际视图,我已经在google chrome浏览器中加载了我的网站并将视图更改为80%。

enter image description here

此外,这里是我在Safari上的网站的视图,它完全不对齐。

enter image description here

此外,下面是一个Web开发人员产品组合的示例,无论显示器的尺寸如何,内容完全符合Google Chrome和Safari的大小比例。 (这是我想要实现的目标)

enter image description here

总的来说,我想知道是否有代码可以使我的内容适合用户屏幕,就像Web开发者网站在示例中上面所示,当我在谷歌浏览器,Safari和移动设备上打开我的网站时内容看起来很完美,并且所有内容都符合我的要求。像这样。

最后,下面是我的HTML&任何愿意帮助我审查我是否在编码中包含错误或者可以添加任何有助于我实现帖子目的的人的CSS。

HTML

<!DOCTYPE html>
<html>
<head>
    <html lang="en">
    <meta charset="UTF-8">
    <title>Liam Docherty Digital Portfolio</title>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
    <link rel="stylesheet" href="css/style.css">
</head>
 <body>
        <nav class="navbar navbar-default navbar-fixed-top"> 
            <div class="container-fluid">
                <!-- Brand and toggle get grouped for better mobile display -->
                <div class="navbar-header">
                    <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
                        <span class="sr-only">Toggle navigation</span>
                        <span class="icon-bar"></span>
                        <span class="icon-bar"></span>
                        <span class="icon-bar"></span>
                    </button>
                    <a class="navbar-brand" href="#"><img src="http://placehold.it/60x60" alt="Your Brand Name"></a>
                    <h1 class="nav-title">Liam Docherty's Digital Portfolio</h1>
                </div>
                <!-- Collect the nav links, forms, and other content for toggling -->
                <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
                    <ul class="nav navbar-nav">
                            <li><a href="#">Home</a>
                            </li>
                            <li class="dropdown">
                                <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="true">About Me <span class="caret"></span></a>
                                <ul class="dropdown-menu">
                                    <li><a href="#">Action</a>
                                    </li>
                                    <li><a href="#section3">Contact</a>
                                    </li>
                                    <li><a href="#">Something else here</a>
                                    </li>
                                    <li><a href="#">Separated link</a>
                                    </li>
                                    <li><a href="#">One more separated link</a>
                                    </li>
                                </ul>
                            </li>
                            <li class="dropdown">
                                <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Units <span class="caret"></span></a>
                                <ul class="dropdown-menu">
                                    <li><a href="#">Action</a>
                                    </li>
                                    <li><a href="#">Another action</a>
                                    </li>
                                    <li><a href="#">Something else here</a>
                                    </li>

                                    <li><a href="#">Separated link</a>
                                    </li>

                                    <li><a href="#">One more separated link</a>
                                    </li>
                                </ul>
                            </li>
                            <li><a href="#">Clients</a>
                            </li>
                            <li><a href="#contact-me">Contact Me</a>
                            </li>
                        </ul>
                      </div><!-- /.navbar-collapse -->
                    </div><!-- /.container-fluid -->
        </nav>


    <section id="section1" class="section1">
      <div class="hero">
          <div class="shape"></div>
          <div class="shape2">
              <p>kjjjjjjjjjkjjjkkjkj</p>
          </div>
        </div>





      <a href="#section2"><i class="fa fa-angle-down" style="font-size:100px;"></i></a>

    </section>
    <section id="section2" class="section2">


      <a href="#contact-me"> <i class="fa fa-angle-down" style="font-size:100px;"></i></a>

    </section>

    <section id="contact-me" class="contact_section section3">


      <a href="#section1"> <i class="fa fa-angle-up" style="font-size:100px;"></i></a>

    </section>
    <script   src="https://code.jquery.com/jquery-3.1.1.js" integrity="sha256-16cdPddA6VdVInumRGo6IbivbERE8p7CQR3HzTBuELA="   crossorigin="anonymous"></script>
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>

<footer>
    <div class="footer">
        <h2 class="footertext">Copyright © 2017 Liam Docherty's Site. All rights reserved.</h2>
    </div>
 </footer>     
</body>
</html>

CSS

<style>
    body {
      margin: 0;
      padding: 0;
    }
    .navbar.navbar-default {
      background-color: #4D5061;
      height: 10vh;
      z-index: 100;
    }
    .navbar.navbar-default ul {
      list-style-type: none;
      text-align: right;
    }
    .navbar.navbar-default ul li {
      display: inline-block;
    }
    .dropdown-menu li { 
        text-align:center 
    }
    .dropdown .dropdown-menu {
      background-color: #4D5061;
    }
    .dropdown .dropdown-menu a {
      color: white;
    }
    .navbar.navbar-default ul li a {
      display: inline-block;
      padding: 3.5vh 8px 4px;
      color: white;
      text-decoration: none;
      font-size: 14pt;
      font-family: 'Roboto', sans-serif;
    }
    .navbar.navbar-default ul li:after {
      content: '';
      position: absolute;
      right: 50%;
      bottom: 0;
      left: 50%;
      height: 3px;
      background-color: #FFFFFF;
      border-radius: 9px;
      transition: all .2s;
    }
    .navbar.navbar-default ul li a:hover {
      color: white;
    }
    .nav.navbar-nav,
    .nav.navbar-nav>li {
      float: none;
    }
    .navbar.navbar-default ul li:hover:after {
      right: 0;
      left: 0;
    }
    .nav-title {
      font-size: 14pt;
      margin:0;
      top: 35px;
      left: 50px;
      width: 100%;
      position: absolute;
      text-align: center;
      color: white;
      font-family: 'Roboto', sans-serif;
    }
    .navbar.navbar-default ul.dropdown-menu li,
    .navbar.navbar-default ul.dropdown-menu li a {
      position: relative;
      display: block;
    }
    #logo {
      padding-top: 2vh;
      padding-left: 20px;
      float: left;
    }
    .hero {
      background-image: url("https://static.pexels.com/photos/48727/pexels-photo-48727.jpeg");
      background-attachment: fixed;
      position:relative;
      text-align: center;
      width: 100%;
      max-width:100%;
      width: 100vw;
      height: 100%;
    }
    section {
      position: relative;
      height: 95vh;
    }
    .section1 {
      height: 100vh;
      text-align: center;
      color: white;
    }
    .section2 {
      background-color: #11B5E4;
      text-align: center;
      color: white;
    }
    .section3 {
      background-color: #FFFFFF;
      text-align: center;
      color: white;
    }
    .fa-angle-down {
      color: #4D5061;
      position: absolute;
      bottom: 0px;
    }
    .fa-angle-up {
      color: #4D5061;
      position: absolute;
      bottom: 0px;
    }
    .footer {
      height: 6vh;
      background-color: #4D5061;
      padding:0;
      right:0;
      bottom:0;
      left:0;
    }
    .footertext{
      font-size: 14pt;
      color: white;
      font-family: 'Roboto', sans-serif;
      text-align: center;
    }
    .shape {
      content:url(http://i1126.photobucket.com/albums/l611/ldocherty1/IMG_0730_zpsiz4dqc47.jpg);
      border-radius: 25px;
      background:#4D5061;
      color:white;
      padding:3px;
      margin:150px auto 0 797px;
      width:250px;
      max-width:100%;
      height:250px;
      position: absolute;
    }
    .shape2 {
      background: linear-gradient(35deg, #4D5061, #4D5061);
      border-radius: 85px;
      color:white;
      opacity: 0.9;
      padding:0px;
      margin:410px auto 0 798px;
      width:250px;
      max-width:100%;
      height:40px;
      left:200;

      position: absolute;
    }
    </style>

2 个答案:

答案 0 :(得分:2)

尝试使用此元标记更新head部分

<meta name="viewport" content="width=device-width, initial-scale=1.0">

在HTML文件的头部并查看CSS Media Queries这些可以帮助您根据屏幕大小更改样式并且非常动态

<!DOCTYPE html>
<html>

<head>
  <html lang="en">
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Liam Docherty Digital Portfolio</title>
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
  <link rel="stylesheet" href="css/style.css">

  <style>
    body {
      margin: 0;
      padding: 0;
    }
    
    .navbar.navbar-default {
      background-color: #4D5061;
      height: 10vh;
      z-index: 100;
    }
    
    .navbar.navbar-default ul {
      list-style-type: none;
      text-align: right;
    }
    
    .navbar.navbar-default ul li {
      display: inline-block;
    }
    
    .dropdown-menu li {
      text-align: center
    }
    
    .dropdown .dropdown-menu {
      background-color: #4D5061;
    }
    
    .dropdown .dropdown-menu a {
      color: white;
    }
    
    .navbar.navbar-default ul li a {
      display: inline-block;
      padding: 3.5vh 8px 4px;
      color: white;
      text-decoration: none;
      font-size: 14pt;
      font-family: 'Roboto', sans-serif;
    }
    
    .navbar.navbar-default ul li:after {
      content: '';
      position: absolute;
      right: 50%;
      bottom: 0;
      left: 50%;
      height: 3px;
      background-color: #FFFFFF;
      border-radius: 9px;
      transition: all .2s;
    }
    
    .navbar.navbar-default ul li a:hover {
      color: white;
    }
    
    .nav.navbar-nav,
    .nav.navbar-nav>li {
      float: none;
    }
    
    .navbar.navbar-default ul li:hover:after {
      right: 0;
      left: 0;
    }
    
    .nav-title {
      font-size: 14pt;
      margin: 0;
      top: 35px;
      left: 50px;
      width: 100%;
      position: absolute;
      text-align: center;
      color: white;
      font-family: 'Roboto', sans-serif;
    }
    
    .navbar.navbar-default ul.dropdown-menu li,
    .navbar.navbar-default ul.dropdown-menu li a {
      position: relative;
      display: block;
    }
    
    #logo {
      padding-top: 2vh;
      padding-left: 20px;
      float: left;
    }
    
    .hero {
      background-image: url("https://static.pexels.com/photos/48727/pexels-photo-48727.jpeg");
      background-attachment: fixed;
      position: relative;
      text-align: center;
      width: 100%;
      max-width: 100%;
      width: 100vw;
      height: 100%;
    }
    
    section {
      position: relative;
      height: 95vh;
    }
    
    .section1 {
      height: 100vh;
      text-align: center;
      color: white;
    }
    
    .section2 {
      background-color: #11B5E4;
      text-align: center;
      color: white;
    }
    
    .section3 {
      background-color: #FFFFFF;
      text-align: center;
      color: white;
    }
    
    .fa-angle-down {
      color: #4D5061;
      position: absolute;
      bottom: 0px;
    }
    
    .fa-angle-up {
      color: #4D5061;
      position: absolute;
      bottom: 0px;
    }
    
    .footer {
      height: 6vh;
      background-color: #4D5061;
      padding: 0;
      right: 0;
      bottom: 0;
      left: 0;
    }
    
    .footertext {
      font-size: 14pt;
      color: white;
      font-family: 'Roboto', sans-serif;
      text-align: center;
    }
    
    .profile.box {
      bottom: 0;
      height: 50%;
      left: 0;
      margin: auto;
      position: absolute;
      right: 0;
      top: 0;
      width: 50%;
    }
    
    .shape {
      border-radius: 25px;
      background: #4D5061;
      content: url(http://i1126.photobucket.com/albums/l611/ldocherty1/IMG_0730_zpsiz4dqc47.jpg);
      color: white;
      height: 250px;
      margin: auto;
      padding: 3px;
      width: 250px;
    }
    
    .shape2 {
      background: linear-gradient(35deg, #4D5061, #4D5061);
      border-radius: 85px;
      color: white;
      height: 40px;
      margin: 1% auto;
      opacity: 0.9;
      padding: 0px;
      width: 250px;
    }
  </style>

</head>

<body>
  <nav class="navbar navbar-default navbar-fixed-top">
    <div class="container-fluid">
      <!-- Brand and toggle get grouped for better mobile display -->
      <div class="navbar-header">
        <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
                        <span class="sr-only">Toggle navigation</span>
                        <span class="icon-bar"></span>
                        <span class="icon-bar"></span>
                        <span class="icon-bar"></span>
                    </button>
        <a class="navbar-brand" href="#"><img src="http://placehold.it/60x60" alt="Your Brand Name"></a>
        <h1 class="nav-title">Liam Docherty's Digital Portfolio</h1>
      </div>
      <!-- Collect the nav links, forms, and other content for toggling -->
      <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
        <ul class="nav navbar-nav">
          <li><a href="#">Home</a>
          </li>
          <li class="dropdown">
            <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="true">About Me <span class="caret"></span></a>
            <ul class="dropdown-menu">
              <li><a href="#">Action</a>
              </li>
              <li><a href="#section3">Contact</a>
              </li>
              <li><a href="#">Something else here</a>
              </li>
              <li><a href="#">Separated link</a>
              </li>
              <li><a href="#">One more separated link</a>
              </li>
            </ul>
          </li>
          <li class="dropdown">
            <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Units <span class="caret"></span></a>
            <ul class="dropdown-menu">
              <li><a href="#">Action</a>
              </li>
              <li><a href="#">Another action</a>
              </li>
              <li><a href="#">Something else here</a>
              </li>

              <li><a href="#">Separated link</a>
              </li>

              <li><a href="#">One more separated link</a>
              </li>
            </ul>
          </li>
          <li><a href="#">Clients</a>
          </li>
          <li><a href="#contact-me">Contact Me</a>
          </li>
        </ul>
      </div>
      <!-- /.navbar-collapse -->
    </div>
    <!-- /.container-fluid -->
  </nav>


  <section id="section1" class="section1">
    <div class="hero">
      <div class="profile box">
        <div class="shape"></div>
        <div class="shape2">
          <p>kjjjjjjjjjkjjjkkjkj</p>
        </div>
      </div>
    </div>





    <a href="#section2"><i class="fa fa-angle-down" style="font-size:100px;"></i></a>

  </section>
  <section id="section2" class="section2">


    <a href="#contact-me"> <i class="fa fa-angle-down" style="font-size:100px;"></i></a>

  </section>

  <section id="contact-me" class="contact_section section3">


    <a href="#section1"> <i class="fa fa-angle-up" style="font-size:100px;"></i></a>

  </section>
  <script src="https://code.jquery.com/jquery-3.1.1.js" integrity="sha256-16cdPddA6VdVInumRGo6IbivbERE8p7CQR3HzTBuELA=" crossorigin="anonymous"></script>
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>

  <footer>
    <div class="footer">
      <h2 class="footertext">Copyright © 2017 Liam Docherty's Site. All rights reserved.</h2>
    </div>
  </footer>
</body>

</html>

去吧;令人讨厌的尺码的罪魁祸首是shapeshape2 div

的保证金

答案 1 :(得分:0)

首先,我建议您了解有关Bootstrap Grid的更多信息。 Bootstrap是一个易于使用和安装的CSS框架,非常适合开发响应式网页(这是您正在寻找的术语)。

如果您想自己动手,可以在CSS中使用媒体查询

示例 以下示例中的CSS仅用于介于520px和699px之间的浏览器窗口。如果窗口大小不在此范围内,则跳过此CSS。

@media screen and (max-width: 699px) and (min-width: 520px) {
    ul li a {
        padding-left: 30px;
        background: url(email-icon.png) left center no-repeat;
    }
}

这个例子来自w3schools。查看here了解更多信息