居中
2017-04-18 本文已影响0人
洛洛kkkkkk
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
/*div{
width: 100px;
height: 100px;
background-color: yellow;
display: table-cell;
vertical-align: middle;
}*/
div{
width: 600px;
height: 600px;
background-color: yellow;
display: flex;
/*flex-direction: column;
justify-content: center;*/
flex-direction: row;
align-items: center;
}
div img{
width: 100px;
height: 100px;
margin: 0 auto;
}
/*div img{
position:absolute;
left: 0;
right: 0;
bottom:0;
top: 0;
margin: auto;
}*/
</style>
</head>
<body>
<div>![](AKL.jpg)</div>
</body>
</html>