2021-09-18
Posted WZJZDZs
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2021-09-18相关的知识,希望对你有一定的参考价值。
html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" type="text/css" href="css/浮动.css"/>
</head>
<body>
<div class="bigBox">
<div class="box1">盒子1</div>
<div class="box2">盒子2</div>
<div class="box3">盒子3</div>
</div>
</body>
</html>
css
.bigBox {
border: 2px solid black;
font-size: 30px;
overflow: hidden;
margin: 0px none;
}
.box1 {
width: 200px;
height: 100px;
background-color: red;
/* display: inline-block; */
float: right;
}
.box2 {
width: 300px;
height: 150px;
background-color: green;
/* display: inline-block;*/
float: right;
}
.box3 {
width: 400px;
height: 200px;
background-color: yellow;
/* display: inline-block; */
float: right;
高大上的效果图
以上是关于2021-09-18的主要内容,如果未能解决你的问题,请参考以下文章
2021-09-18 稍微写一些关于RTSP协议分析后的小结
贪玩巴斯数字图像处理基础课堂笔记——Matlab基础 2021-09-18
2021-09-18:给定一个只包括 ‘(‘,‘)‘,‘{‘,‘}‘,‘[‘,‘]‘ 的字符串 s ,判断字符串是否有效。有效字符串需满足:左括号必须用相同类型的右括号闭合。左括号必须以正确的顺序闭合
vue打包后报错TypeError: Cannot read property ‘call’ of undefined解决方法 - 2021-09-18