gpt4 book ai didi

html - 需要帮助定位这些 div...

转载 作者:行者123 更新时间:2023-11-28 10:35:35 25 4
gpt4 key购买 nike

我正在制作“从站点框中获取链接”,但我似乎无法正确定位这些 div。大多数情况下它们是正确的,但我希望标题位于中间,“获取链接”按钮与搜索框对齐,搜索框更靠右。我已经摆弄了大约 45 分钟,并研究了 w3 上的定位,但我就是做不到。任何指示都会有所帮助。

这是 jsfiddle

https://jsfiddle.net/j6pf08kn/1/

HTML

<body>
<div id="top_con">
<div id="title_con">
<a href="swfs/welcomeflash.swf" id="downLink" download="welcomeflash">
<header id="title">
Diff Lirl
</header>
</a>
</div>
<div id="share_con">
<button id="share">Get a link!</button>
<textarea id="link"></textarea>
</div>
</div>
</body>

CSS

html {
height: 100%;
}

body {
background-color: black;
height: 100%;
margin: 0;
padding: 0;
}

header {
margin: 0 auto;
}

#top_con {
width: 100%;
display: inline-block;
}

#share_con {
float: right;
width: 40%;
display: inline-block;
}

#link {
width: 50%;
resize: none;
margin-top: 3%;
}

#share {}

#title_con {
width: 57%;
float: center;
display: inline-block;
}

#title {
font-family: "Arial Black", Gadget, sans-serif;
font-size: 48px;
text-align: right;
color: white;
cursor: pointer;
}

a {
text-decoration: none;
color: white;
}

最佳答案

http://codepen.io/anon/pen/WxGepy

所以我做了一些事情。现在列出它们:

  • 我扔了另一个 wrapper 。
  • 我冒昧地将您的 ID 替换为类
  • 我在其中注释了代码以向您展示框阴影。我喜欢它们而不是边框​​,因为 box-sizing 和边框对盒子模型的影响。
  • 我改变了颜色,因为我的眼睛受伤了。
  • 我在这里利用了几个属性,最值得注意的是 float:left;text-align:center;显示:内联 block ;
  • 注意:当屏幕尺寸变得更小时,这确实有一个相当丑陋的故障。响应性不在最初的问题或范围内。(可以根据要求添加)

html {
height: 100%;
width: 100%;
}

body {
background-color: #ccc;
height: 100%;
width: 100%;
margin: 0;
padding: 0;
}

a {
text-decoration: none;
}

* {
box-shadow: 0 0 15px 1px rgba(255, 0, 0, 0.4) inset, 0 0 0 1px rgba(0, 0, 255, 0.5);
}

.top_con {
text-align: center;
}

.inner_con {
display: inline-block;
}

.share_con {
padding: 1em;
display: inline-block;
}

.share_con,
.title_con {
float: left;
position: relative;
}

.title {
font-family: "Arial Black", Gadget, sans-serif;
font-size: 48px;
color: white;
cursor: pointer;
margin: 0 1em;
}

.hide_my_ass {
visibility: hidden;
}

.share {
vertical-align: middle;
}

.link {
vertical-align: middle;
}

<body>
<div class="top_con">
<div class="inner_con">
<div class="share_con hide_my_ass">
<button class="share">Get a link!</button>
<textarea class="link"></textarea>
</div>
<div class="title_con">
<a href="#" class="downLink">
<header class="title">
Diff Lirl
</header>
</a>

</div>
<div class="share_con">
<button class="share">Get a link!</button>
<textarea class="link"></textarea>
</div>
</div>
</div>
</body>

关于html - 需要帮助定位这些 div...,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37884446/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com