yunsuo 发表于 2021-6-21 21:42

新手请教个问题。

各位老哥,新手刚开始学html,下面这个代码怎么让文字和后面画的框框对齐啊。
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
      .bar {
            width: 150px;
            height: 15px;
            border-radius: 7px;
            border: 1px solid red;
            padding: 1px;
      }
      .bar2 {
            width: 57%;
            height: 100%;
            background-color: red;
            border-radius: 7px;
            transition: width .5s;
      }
      .bar:hover .bar2 {
            width: 100%;
      }
    </style>
</head>
<body>
    <div class="father">
      我是一个小青蛙<div class="bar">
            <div class="bar2"></div>
      </div>
      你是一个大蛤蟆
    </div>
</body>
</html>

qq231 发表于 2021-6-21 21:54

本帖最后由 qq231 于 2021-6-21 21:58 编辑

是居中对齐 text-align: center;
还是水平(给父盒子display:flex;align-items:center;)

yunsuo 发表于 2021-6-21 21:58

qq231 发表于 2021-6-21 21:54
是居中对齐还是水平

水平居中对齐

qq231 发表于 2021-6-21 21:59

yunsuo 发表于 2021-6-21 21:58
水平居中对齐

给父盒子    display:flex;align-items: center;

qq231 发表于 2021-6-21 22:01

qq231 发表于 2021-6-21 21:59
给父盒子    display:flex;align-items: center;

    display: flex;align-items: center;

cube 发表于 2021-6-21 22:14

.father{
    display: flex;
    flex-direction: column;
    align-items: center;
}

Wapj_Wolf 发表于 2021-6-22 07:58

高手不少啊,学习到了。

yunsuo 发表于 2021-6-22 12:31

qq231 发表于 2021-6-21 21:59
给父盒子    display:flex;align-items: center;

谢谢,已经达到了效果了

yunsuo 发表于 2021-6-22 12:33

cube 发表于 2021-6-21 22:14
.father{
    display: flex;
    flex-direction: column;


嗯嗯,楼上已经回答了,确实达到效果了
页: [1]
查看完整版本: 新手请教个问题。