Ska*_* So 3 html css margin alignment
我正在尝试将加载图像放在页面的右侧,但除了margin-bottom之外,一切正常.
<div id="preload">
<div align="right" style="margin-bottom:40px; margin-right:50px;">
<img src="http://thc-racing.ucoz.com/design/loading.gif" alt="" />
<br>
<a style="color:#00ff24;"><b>Please wait while the page is loading...
<br>If the website doesn't load within one minute please refresh your page!</b>
</a>
</div>
</div>
Run Code Online (Sandbox Code Playgroud)
任何人都可以告诉我它是什么或如何使它工作?谢谢
小智 3
您应该指定绝对位置并使用底部和右侧属性。
<div id="preload">
<div align="right" style="position:absolute; bottom:40px; right:50px">
<img src="http://thc-racing.ucoz.com/design/loading.gif" alt="" />
<br><a style="color:#00ff24;"><b>Please wait while the page is loading...<br>If the website doesn't load within one minute please refresh your page!</b></a>
</div>
Run Code Online (Sandbox Code Playgroud)