繁体   English   中英

使用 align-items center 使元素稍微低一点

[英]Using align-items center makes the element a little bit lower

<div class="content-home">

  <div class="logo-wrap-home">

    <div class="logo-homepage"></div>

  </div>

  <div class="search-wrap-home">

    <form method="get" class="search-home" action="https://raihan-zidan.github.io/search">

      <div class="search-box">

        <div class="search-field">

          <input name="q" class="search-input" autocorrect="off" autocomplete="off" autocapitalize="off" placeholder="Type to search...">

          <button type="submit" class="search-toggle"></button>

        </div>

      </div>

      <noscript>Javascript is required for the site to work</noscript>

    </form>

  </div>

</div>
`

CSS:`*{

填充:0;

保证金:0;

框大小:边框框;

文本大小调整:无;

}

html,身体{

高度:100%;

背景:#f5f8fa;

字体系列:“Helvetica Neue”,宋体;

溢出:隐藏;

}

.content-home {

保证金:0;

填充:0;

}

.logo-wrap-home {

填充:30px 0;

显示:弹性;

证明内容:居中;

}

.logo-主页{

宽度:230px;

最小高度:58px;

背景图像:url(“logourl”);

背景尺寸:封面;

背景位置:中心;

背景重复:不重复;

}

.search-toggle {

边框:无;

背景:透明;

}

。搜索框 {

宽度:100%;

position:亲戚;

}

.搜索字段{

宽度:100%;

显示:弹性;

对齐项目:居中;

}

.search-toggle {

position:绝对;

宽度:45px;

高度:45px;

右:0;

cursor:指针;

背景图像:url(“logourl”);

背景大小:18px;

背景重复:不重复;

背景位置:中心

}

.搜索输入{

宽度:100%;

高度:44px;

大纲:0;

边框:无;

边界半径:22px;

字体大小:16px;

框阴影:0 2px 4px 0 rgba(0,0,0,.08),0 0 1px 0 rgba(0,0,0,.1);

填充:0 45px 0 20px;

背景:白色;

}`

请帮助我,我需要这个

我认为您需要使用justify-content:center将搜索框置于中心。

 html, body { height: 100%; background: #f5f8fa; font-family: "Helvetica Neue", arial; overflow: hidden; }.content-home { margin: 0; padding: 0; }.logo-wrap-home { padding: 30px 0; display: flex; justify-content: center; }.logo-homepage { width: 230px; min-height: 58px; background-image: url("logourl"); background-size: cover; background-position: center; background-repeat: no-repeat; }.search-toggle { border: none; background: transparent; }.search-box { position: relative; display: flex; justify-content: center; }.search-field { display: flex; align-items: center; }.search-toggle { position: absolute; width: 45px; height: 45px; right: 0; cursor: pointer; background-image: url("logourl"); background-size: 18px; background-repeat: no-repeat; background-position: center; }.search-input { width: 100%; height: 44px; outline: 0; border: none; border-radius: 22px; font-size: 16px; box-shadow: 0 2px 4px 0 rgba(0,0,0,.08),0 0 1px 0 rgba(0,0,0,.1); padding: 0 45px 0 20px; background: white; }
 <html> <body> <div class="content-home"> <div class="logo-wrap-home"> <div class="logo-homepage"></div> </div> <div class="search-wrap-home"> <form method="get" class="search-home" action="https://raihan-zidan.github.io/search"> <div class="search-box"> <div class="search-field"> <input type="text" class="search-input" placeholder="Type to search..."/> <button type="submit" class="search-toggle"></button> </div> </div> <noscript>Javascript is required for the site to work</noscript> </form> </div> </div> </body> </html>

希望能帮助到你!

这可能对你有帮助,但你想重新创建https://raihan-zidan.github.io/的风格,所以只是 go 并了解他们是如何做的并提供他们网站的参考。

这是类似这样的东西,不仅仅是复制粘贴,但它接近于......

剧本部分,自己试着去理解吧!

 * { padding: 0; margin: 0; } html, body { height: 100%; background: #f5f8fa; font-family:"Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif" }.site-wrapper { height: 100%; display: grid; place-items: center; }.content-wrap-home { transform: translateY(-50%); }.content-home { margin: 0; padding: 0; }.logo-wrap-home { padding: 30px 0; display: flex; justify-content: center; }.logo-homepage { width: 230px; min-height: 58px; background-image: url("https://dummyimage.com/230x58/b0b0b0/262626"); background-size: cover; background-position: center; background-repeat: no-repeat; }.search-toggle { border: none; background: transparent; }.search-box { position: relative; }.search-field { width: 100%; display: flex; align-items: center; }.search-toggle { position: absolute; width: 45px; height: 45px; right: 0; cursor: pointer; background-image: url("https://dummyimage.com/18x18/b0b0b0/262626"); background-size: 18px; background-repeat: no-repeat; background-position: center }.search-input { width: 100%; outline: none; border: none; border-radius: 22px; font-size: 16px; box-shadow: 0 5px 5px 0 rgba(0,0,0,.1),0 5px 5px 0 rgba(0,0,0,.1); padding: 10px 50px 10px 50px; background: white; }
 <div class="site-wrapper"> <div class="content-wrap-home"> <div id="content-homepage" class="content-home"> <div class="logo-wrap-home"> <div class="logo-homepage"></div> </div> <div class="search-wrap-home"> <form method="get" class="search-home" action="#"> <div class="search-box"> <div class="search-field"> <input name="q" class="search-input" title="Search" value="Search"> <button type="submit" class="search-toggle"></button> </div> </div> </form> </div> </div> </div> </div>

暂无
暂无

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

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