猿问

.left元素不是浮动了吗,为什么.right元素不会向左靠。 display:inline-block删除之后么就会左靠

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>Document</title>

<style>

.top{

background: blue;

height: 30px;

}


.left{

width:30px;

height: 30px;

background: pink;


float: left;

}

.right{

width:30px;

height: 30px;

background: yellow;


display: inline-block;





}

</style>

</head>

<body>

<div></div>

<div></div>

<div></div>

</body>

</html>


李逍遥lh
浏览 1294回答 1
1回答

旺仔小馒头21

在.right里写float:left;两个都会飘起来
随时随地看视频慕课网APP
我要回答