我有一個網站,其中有一個圓形圖像。如何居中圖像
我想要的圖像是在所有的時間中心。(小/中/大屏幕)
要清除它visit。
的代碼放在這裏: -
<html>
<head>
<title>
Maintenance in Progress
</title>
<style>
.timer {
text-align: center;
font-size: 60px;
color: white;
position: absolute;
right: 500px;
bottom: 0;
}
body {
background-repeat: no-repeat;
background-size: 100% 100%;
}
.utxt{
position: absolute;
}
.circle{
position: absolute;
top: 50%;
left: 50%;
}
.dtxt{
position: absolute;
bottom: 0;
}
</style>
</head>
<body background="maintenance/bg.png">
<img class="utxt" src="maintenance/utxt.png"></img>
<img class="circle" src="maintenance/circle.png"></img>
<img class="dtxt" src="maintenance/dtxt.png"></img>
<div class="timer" id="demo"></div>
</body>
</html>
請幫我!