链接标题对齐中的图标

问题描述 投票:0回答:2

我的标题分为3个部分:leftcenterrightleft部分是空的。在center部分,我有我的页面标题,在right部分,我放置了一个“帐户”链接,旁边有一个图标。该链接包含单词ACCOUNT和一个图标。图标以某种方式被推到顶部,并在该单词旁边的下方留下一个空白区域。我希望他们在一条线上和同一条高度上。我怎样才能做到这一点?我添加了红色背景,以使问题更容易理解。

html {
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

*,
*:before,
*:after {
  box-sizing: inherit;
  overflow: inherit;
}

body {
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
  position: relative;
  height: 100%;
}

#in {
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}


/* ------------------------------------------------------------------------ */


/* -------------------------------- HEADER -------------------------------- */


/* ------------------------------------------------------------------------ */

header {
  background-color: #131b23;
  border-bottom: 6px solid #0f151a;
  text-align: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 170px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  z-index: 99;
}

#left {
  background-color: green;
  width: 20%;
  position: absolute;
  height: 164px;
}

#center {
  background-color: red;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  position: absolute;
  left: 20%;
  right: 20%;
  height: 164px;
}

#right {
  background-color: blue;
  width: 20%;
  height: 100%;
  position: absolute;
  right: 0;
  height: 164px;
}

#heading {
  font-size: 60px;
  display: block;
  margin-bottom: -7px;
  margin-top: 15px;
}

.accountlink {
  font-family: "Helvetica";
  text-decoration: none;
  font-weight: 800;
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: red;
  position: absolute;
  right: 30px;
  top: 15px;
}

.navigationicon {
  position: relative;
  width: 24px;
  margin: 0;
  padding: 0;
  top: 50%;
  bottom: 50%;
}
<header>
    <div id="left">
    </div>
    <div id="center">
      <h1 id="heading">My Page</h1>
    </div>
    <div id="right">
      <a class="accountlink" href="login.html">Account <img class="navigationicon" src="https://cdn2.iconfinder.com/data/icons/ios-7-icons/50/user_male2-512.png"></a>
    </div>
  </header>
html css
2个回答
0
投票

你能检查一下吗?

html {
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

*,
*:before,
*:after {
  box-sizing: inherit;
  overflow: inherit;
}

body {
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
  position: relative;
  height: 100%;
}

#in {
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}


/* ------------------------------------------------------------------------ */


/* -------------------------------- HEADER -------------------------------- */


/* ------------------------------------------------------------------------ */

header {
  background-color: #131b23;
  border-bottom: 6px solid #0f151a;
  text-align: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 170px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  z-index: 99;
}

#left {
  background-color: green;
  width: 20%;
  position: absolute;
  height: 164px;
}

#center {
  background-color: red;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  position: absolute;
  left: 20%;
  right: 25%;
  height: 164px;
}

#right {
  background-color: blue;
  width: 20%;
  height: 100%;
  position: absolute;
  right: 0;
  height: 164px;
}

#heading {
  font-size: 60px;
  display: block;
  margin-bottom: -7px;
  margin-top: 15px;
}

.accountlink {
  font-family: "Helvetica";
  text-decoration: none;
  font-weight: 800;
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: white;
  position: absolute;
  left: 50px;
  top: 20px;
  background: url("https://cdn2.iconfinder.com/data/icons/ios-7-icons/50/user_male2-512.png");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position-x: right;
  background-position-y: 0px;
  width: 40%;
  line-height: 2;
}
<header>
    <div id="left">
    </div>
    <div id="center">
      <h1 id="heading">My Page</h1>
    </div>
    <div id="right">      
      <a class="accountlink" href="login.html">Account </a>
    </div>
  </header>

0
投票

对您的css代码进行四处更改:2位于.navigationicon,2位于.accountlink

 .accountlink {
  font-family: "Helvetica";
  text-decoration: none;
  font-weight: 800;
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: red;
  position: absolute;
  right: 80px;
  top: 70px;
 }

.navigationicon {
  position: relative;
  width: 12px;
  margin: 0 0 2px -5px;
  padding: 0;
  top: 50%;
  bottom: 50%;
}
© www.soinside.com 2019 - 2024. All rights reserved.