用两种方法来实现一个背景色为红色,宽度为800px,高度为400px的<DIV>在浏览器中居中...

mac2022-06-30  94

第一种方法

<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

最新回复(0)