吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 924|回复: 8
收起左侧

[求助] 新手请教个问题。

[复制链接]
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 编辑

是居中对齐
[CSS] 纯文本查看 复制代码
 text-align: center;

还是水平(给父盒子display:flex;align-items:center;)
 楼主| yunsuo 发表于 2021-6-21 21:58
qq231 发表于 2021-6-21 21:59
qq231 发表于 2021-6-21 22:01
qq231 发表于 2021-6-21 21:59
给父盒子    display:flex;align-items: center;

[CSS] 纯文本查看 复制代码
    display: flex;align-items: center;
cube 发表于 2021-6-21 22:14
[CSS] 纯文本查看 复制代码
.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
[mw_shl_code=css,true].father{
    display: flex;
    flex-direction: column;

嗯嗯,楼上已经回答了,确实达到效果了
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-1 09:00

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表