繁体   English   中英

如何缩小超链接的宽度大小?

[英]How to shrink the width size hyperlink?

我对html / css编程非常了解,所以如果这是菜鸟错误,请原谅我。

我已经开始了一个新网页-http: //robingham.co.uk/LUUCC4/index.php

我决定尝试首先整理出固定的导航和菜单栏。

我希望网站的菜单按钮和徽标位于固定的导航栏中。 如您所见,我已经对其进行了整理。 我需要做一些小事情,例如对齐菜单按钮。 但是功能似乎运行良好。

我目前正在尝试解决的问题是徽标具有屏幕宽度大小的超链接区域。 我在徽标上添加了超链接,以便用户可以通过单击它返回主页。 我也希望徽标无论屏幕大小如何都水平居中。 我认为这个问题与我不得不使用display: block;的事实有关display: block; 为了使水平中心对齐工作,但我不确定如何修复超链接。

我该如何解决?

谢谢

我的index.php是。

   <!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
    <link rel="icon" type="image/ico" href="http://www.robingham.co.uk/LUUCC3/media/favicon.ico">
    <link type="text/css" rel="stylesheet" href="http://www.robingham.co.uk/LUUCC3/styles/general_formatting.css"/>
    <title>LUUCC-Build</title>
    <meta charset="UTF-8" />
    <script src="http://www.robingham.co.uk/LUUCC3/scripts/jquery-1.11.3.min.js"></script>
    <script src="http://www.robingham.co.uk/LUUCC3/scripts/menu_function.js"></script>
</head>


<body>
    <div id="header_bar">
        <img class="icon-menu" src="media/menu.png" width="40" height="40" alt="Menu button"/>
        <!--<a href="http://www.robingham.co.uk"><img id="header_bar_menu" src="media/menu.png" width="40" height="40" alt="Menu button"/></a>-->
        <div><a href="http://www.robingham.co.uk/LUUCC/index.php"><img id="header_bar_logo" src="media/header_bar_logo.png" width="315" height="65" alt="LUUCC logo"/></a></div>
    </div>

    <div class="menu">
      <!-- Menu icon -->
      <div class="icon-close">
        <img src="http://www.robingham.co.uk/LUUCC3/media/close.png">
      </div>

      <!-- Menu -->
      <ul>
        <li><a href="#">About</a></li>
        <li><a href="#">Blog</a></li>
        <li><a href="#">Help</a></li>
        <li><a href="#">Contact</a></li>
      </ul>
    </div>




    </div id="body_material">
    <p>test1</p>
    <p>test2</p>
    <p>test3</p>
    <p>test4</p>
    <p>test5</p>
    <p>test6</p>
    <p>test7</p>
    <p>test8</p>
    <p>test9</p>
    <p>test10</p>
    <p>test221</p> <!--Removed some of these for the sake of the post-->
    <p>test221</p>
    <p>test221</p>
    <p>test221</p>
    <p>test221</p>
    </div>  
</body> 
</html>

我的CSS代码是。

body {
    background-color: #00FFF0; /*#f6f6f6*/
}

#header_bar {
    z-index: 1;
    position: fixed;
    width: 100%;
    top: -1px;
    left: -1px;
    height: 65px; /**/
    background-color: #FFFFFF; /*FFFFFF*/
    border:1px solid #ccc;
}

#header_bar_menu{
    display: inline-block;
    /*vertical-align: 9px;
    margin-left: 10px;*/
    border:4px solid #000000;
    margin-left: 15px;
    margin-top: 15px;
}

#header_bar_logo {
    /*display: inline-block;
    margin-left: 500px;*/
    /*display: inline-block;
    text-align:center;*/
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: -95px; /*-60*/
}

.menu {
  background: #202024; 
  left: -285px;  /* start off behind the scenes */
  top: 65px;
  height: 100%;
  position: fixed;
  width: 285px;
}

.menu ul {
  border-top: 1px solid #636366;
  list-style: none;
  margin: 0;
  padding: 0;
}
 /**/
.menu li {
  border-bottom: 1px solid #636366;
  font-family: 'Open Sans', sans-serif;
  line-height: 45px;
  padding-bottom: 3px;
  padding-left: 20px;
  padding-top: 3px;
}

.menu a {
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  text-transform: uppercase;
}

.icon-close {
  cursor: pointer;
  padding-left: 10px;
  padding-top: 10px;
}

.icon-menu {
  color: #fff;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  padding-bottom: 25px;
  padding-left: 25px;
  padding-top: 25px;
  text-decoration: none;
  text-transform: uppercase;
}

.icon-menu i {
  margin-right: 5px;
}

 body { background-color: #f6f6f6; /*#f6f6f6*/ } #header_bar { z-index: 1; position: fixed; width: 100%; top: -1px; left: -1px; height: 65px;/**/ background-color: #FFF;/*FFFFFF*/ border:1px solid #ccc; text-align: center; } #header_bar_menu{ display: inline-block; /*vertical-align: 9px; margin-left: 10px;*/ border:4px solid #000000; margin-left: 15px; margin-top: 15px; } #header_bar_logo { /*display: inline-block; margin-left: 500px;*/ /*display: inline-block; text-align:center;*/ /* display: block; */ /* margin-left: auto; */ /* margin-right: auto; */ /* margin-top: -95px; *//*-60*/ } .menu { background: #202024; /* url('http://s3.amazonaws.com/codecademy-content/courses/ltp2/img/uber/black-thread.png') repeat left top;*/ left: -285px; /* start off behind the scenes */ top: 65px; height: 100%; position: fixed; width: 285px; } .menu ul { border-top: 1px solid #636366; list-style: none; margin: 0; padding: 0; } /**/ .menu li { border-bottom: 1px solid #636366; font-family: 'Open Sans', sans-serif; line-height: 45px; padding-bottom: 3px; padding-left: 20px; padding-top: 3px; } .menu a { color: #fff; font-size: 15px; text-decoration: none; text-transform: uppercase; } .icon-close { cursor: pointer; padding-left: 10px; padding-top: 10px; } .icon-menu { color: #fff; cursor: pointer; font-family: 'Open Sans', sans-serif; font-size: 16px; /* padding-bottom: 25px; */ /* padding-left: 25px; */ /* padding-top: 25px; */ text-decoration: none; text-transform: uppercase; position: absolute; left: 1rem; top: 1rem; } .icon-menu i { margin-right: 5px; } 
 <base href="http://robingham.co.uk/LUUCC4/index.php"/> <div id="header_bar"> <img class="icon-menu" src="media/menu.png" width="40" height="40" alt="Menu button"/> <!--<a href="http://www.robingham.co.uk"><img id="header_bar_menu" src="media/menu.png" width="40" height="40" alt="Menu button"/></a>--> <a href="http://www.robingham.co.uk/LUUCC4/index.php"><img id="header_bar_logo" src="media/header_bar_logo.png" width="315" height="65" alt="LUUCC logo"/></a> </div> <div class="menu"> <!-- Menu icon --> <div class="icon-close"> <img src="http://www.robingham.co.uk/LUUCC4/media/close.png"> </div> <!-- Menu --> <ul> <li><a href="#">About</a></li> <li><a href="#">Blog</a></li> <li><a href="#">Help</a></li> <li><a href="#">Contact</a></li> </ul> </div> </div id="body_material"> <p>test1</p> <p>test2</p> <p>test3</p> <p>test4</p> <p>test5</p> </div> 

嵌套链接和徽标,如下所示:

<a>
    <img src="this_is_my_logo.png" />
</a>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM