我對html/css編程很新鮮,所以請原諒我,如果這是一個新手的錯誤。如何縮小寬度大小超鏈接?
我已經開始了一個新的網頁 - http://robingham.co.uk/LUUCC4/index.php
我決定嘗試獲得固定的導航和菜單欄整理第一。
我希望菜單按鈕和站點的徽標位於固定導航欄內。正如你所看到的,我已經把它整理出來了。有一些我需要做的小事情,比如對齊菜單按鈕。但功能似乎工作正常。
我現在試圖解決的問題是該徽標具有屏幕寬度大小的超鏈接區域。我已經添加了一個指向該徽標的超鏈接,以便用戶可以通過點擊返回到主頁。不管屏幕的大小如何,我也希望徽標水平居中。我相信這個問題與事實有關,我必須使用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;
}
我在我的代碼一點點複製和粘貼錯誤與我的一些目錄。 雷的解決方案像魔術一樣工作。謝謝。 –