博客列表 >浮动与定位实例 2019-04-26

浮动与定位实例 2019-04-26

偏执的博客
偏执的博客原创
2019年04月29日 10:52:18600浏览
  1. 绝对定位登录窗口

  2. 实例

    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="utf-8">
    	<title>绝对定位做登录窗口</title>
    	<style type="text/css">
    body {
    	margin:0;
    	background-image:url("C:/Users/wxd-mac-win/Documents/学习/0426/static/images/php.jpg");
    	background-size: cover;
    	
    }
    
    .shade {
    	position:absolute;
    	/*左上角*/
    	left:0;
    	top:0;
    	width:100%;
    	height:100%;
    	background-color: black;
    	opacity:0.7;
    }
    
    
    .login {
    	height: 220;
        width:420;
    	background-color: lightblue;
    	position:absolute;
    	left: 50%;
    	top:50%;
        margin-left:-210px;
    	margin-top:-110px;
    
    }
    
      .world{
                width:420px;
                height:160px;
                text-align:center;
            }
    
    
    
    	</style>
    
    </head>
    <body>
    <div class="shade"></div>
    <div class="login">
    <div class="world">
    <form action="" method="post">
       <p>
           <label for="usename">帐号:</label>
           <input type="text" name="usename" id="usename" autofocus placeholder="不超过8个字母" requied>
       </p>
    
       <p>
           <label for="password">密码:</label>
           <input type="password" id="password" name="password" placeholder="6-12个字母">
       </p>
    
       <p><button>登录</button></p>
    </form></div></div>
    
    </body>
    </html>

    运行实例 »

    点击 "运行实例" 按钮查看在线实例

    2.固定定位实现QQ客服效果

实例

<!DOCTYPE html>
<html>
<head>
	<title>固定定位QQ客服效果</title>
	<style type="text/css">

body {
	height: 2000px
}

.serve {
     width:150px;
     height:80px;
     background-color: lightyellow;
     position: fixed;
     right:0;
     bottom:50%; 
}




	</style>
</head>
<body>
<div class="serve">

<span class="title">在线咨询</span><br>
<span class="signature">服务时间 9:00-20:00</span>
</div>

</body>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例


声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议