我想把h1文本(你说的标签(移到底部,但我做不到。对不起,很抱歉问了这么简单的问题,但我需要帮助,因为这是我的第一天!
到目前为止我非常感谢。
这是图片
这是我在问这里之前犯的错误。我试着用CSS将它们按位置对齐或对齐。然而,它仍然没有起作用。因此,我解决问题的方法是将h1(YOU SAY TAG(放在div下。
<div class="box1">
<H1> YOU SAY TAG </H1>
<div class="box2">
<h1> WHEN I SAY DIV...</h1></div>
</div>
只需将<h1>
文本放在parent
div
内的child
div
下方
<style>
.parent {
background-color: grey;
width: 50%;
}
.child {
background-color: yellow;
width: 80%;
height: 200;
}
</style>
<div class="parent">
<div class="child">
<h1>When I say div... </h1>
</div>
<h1>You say tag </h1>
</div>
有几种方法可以做到这一点。其中最新的是使用flexbox。查看此页面以了解flexbox:https://flexboxfroggy.com/这是一款很酷的教学游戏。