好友
阅读权限10
听众
最后登录1970-1-1
|
各位老哥,新手刚开始学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> |
|
发帖前要善用【论坛搜索】功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。 |
|
|
|
|