我刚刚为我的摄影设计了一个网页。我使用 Chrome 作为我的测试浏览器。
但是在 IE 上打开我的页面,什么都看不到。在遇到一些麻烦之后,我将问题与我使用百分比的事实隔离开来。我在网上搜索了解决方案,但一切都是关于微小的变化(与填充和百分比有关)。
这是一个简单的 HTML 文件,它可以在 Chrome 中完美运行,但并非全部在 IE 中运行(div 是一个无像素框,由于文本的存在而略微扩展)。非常感谢您的帮助。如果我不能解决这个问题,我将不得不完全重新设计我的网站。
<html>
<head>
<title>A test HTML</title>
<style type="text/css">
#currpage
{
position: absolute;
bottom: 18%;
right: 10%;
left: 35%;
top: 15%;
border:2px solid green;
z-index: 240;
}
</style>
</head>
<body>
<div id="currpage" style="visibility: visible; opacity: 1;">
This is just a test.
</div>
</body>
</html>