提示:以下是本篇文章正文内容,下面案例可供参考
一、备忘录
代码如下(示例):
<!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>
<script src="./vue.js"></script>
<style>
* {
margin: 0;
padding: 0;
}
#app {
display: flex;
margin: 10px auto;
width: 500px;
flex-direction: column;
}
#footer {
display: flex;
flex-direction: row;
align-items: center;
height: 40px;
}
#footer>* {
margin-left: 10px;
}
#footer> :nth-child(2) {
flex: 1;
}
#footer> :nth-child(3) {
width: 130px;
background: red;
color: #fff;
border-radius: 6px;