div水平垂直居中问题 2017/02/16 | HTML5/CSS3 | WGinit | 暂无评论 | 622 views 来,直接来吧,, 一、如果是文字居中: <div class="center"><span>hello</span></div> 则css:<style>.center { width:200px; height:100px; text-align:center; line-height:100px}</style> 这就实现了水平垂直居中,如图: 二、如果是div居中: <div class="wrap"><……