第一种方法
<style> div{ margin: 0 auto; background-color: yellow; width: 50em; height: 25em; text-align: center; } </style></head><body><div> div居中</div></body>
第二种方法
<style> div{ position: absolute; left: 50%; margin-left: -25em; background-color: yellow; width: 50em; height: 25em; text-align: center; } </style></head><body><div> div居中</div></body>
转载于:https://www.cnblogs.com/chenchuen/p/4937086.html