css怎么設置form在塊中垂直居中?
1、首先,打開html編輯器,新建html文件,例如:index.html,輸入問題基礎代碼。
2、在index.html中的<style>標簽中,輸入css代碼:body {text-align:center;},在<script>標簽中輸入js代碼:
var a = ($(document).height() - $('form').height()) / 2;
$('form').css('margin-top', a + 'px');
3、瀏覽器運行index.html頁面,此時form標簽成功在頁面中水平垂直居中了。
上一篇div外邊距