让元素浮动在某个位置

让元素浮动在某个位置:
<div style="z-index:100;position:fixed;top:300px;left:500px;">
<div class="div-alert" id="div-alert" style="display:none"></div>
</div>
//元素样式
.div-alert {
background:#8f8d8d;
color:#ffffff;
float:left;
padding:5px;
border-radius:3px;
}

原文地址:https://www.cnblogs.com/Zbuxu/p/6738854.html