码迷,mamicode.com
首页 > Web开发 > 详细

css悬浮右侧悬浮

时间:2016-04-13 02:10:41      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:

<html>
<head>
<title>CSSDemo</title>
<style type"text/css">

.hover-right-css{

background-color:orange;

width:100px;

height:100px;

position:fixed;/*fixed总是以body为定位时的对象,总是根据浏览器的窗口来进行元素的定位,通过"left"、 "top"、 "right"、 "bottom" 属性进行定位。*/

right:0px;/*设置与右侧的距离*/
bottom:50px;/*设置与底部的距离*/

z-index:100;/*设置显示次序,数字越大显示越靠前*/

}
</style>
</head>
<body style="height:2000px;">
<!--前端代码开始-->

<div class="hover-right-css"></div>

<!--前端代码结束-->
</body>
</html>

css悬浮右侧悬浮

标签:

原文地址:http://www.cnblogs.com/pzstudyhard/p/5385222.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!