zoukankan      html  css  js  c++  java
  • css3 border-image

    <!DOCTYPE html>
    <html>
    
    	<head>
    		<meta charset="UTF-8">
    		<title></title>
    		<style type="text/css">
    			#stretch {
    				border: 15px solid transparent;
    				 300px;
    				border-image-source: url(img/isux.png);
    				border-image-slice: 20%;
    				border- 10px;
    				border-image-repeat: round;
    				/* round  repeat  Stretch*/
    			}
    			
    			.border-image-btn {
    				border: 18px solid green;
    				border- 0 18px;
    				-webkit-border-image: url("img/button_sprite.png") 0 18 50 18;
    				-moz-border-image: url("img/button_sprite.png") 0 18 50 18;
    				-o-border-image: url("img/button_sprite.png") 0 18 50 18;
    				border-image: url("img/button_sprite.png") 0 18 50 18;
    				padding: 13px 10px 17px;
    				font-size: 16px;
    				color: #fff;
    				font-weight: bold;
    				text-decoration: none;
    				line-height: 15px;
    			}
    			
    			.border-image-btn:hover {
    				-webkit-border-image: url("img/button_sprite.png") 50 18 0 18;
    				-moz-border-image: url("img/button_sprite.png) 50 18 0 18;
    				-o-border-image: url("img/button_sprite.png") 50 18 0 18;
    				border-image: url("img/button_sprite.png") 50 18 0 18;
    				color: #000;
    				border-color: yellow;
    				text-decoration: none;
    			}
    			
    			
    		</style>
    	</head>
    
    	<body>
    		<input type="button" name="" id="" class="border-image-btn" value="测 试" />
    		<div id="stretch">
    			asd
    		</div>
    	</body>
    
    </html>
    

      

  • 相关阅读:
    Oracle 创建表并设置主键自增
    Oracle 基本知识回顾
    关于JAVAweb的一些东西
    JAVA获取运行环境的信息
    关于正则表达式的一些东西
    关于jQuery的一些东西
    关于JS的一些东西
    thymeleaf 的使用
    小程序flex容器
    Vue组件化
  • 原文地址:https://www.cnblogs.com/lgjc/p/6442453.html
Copyright © 2011-2022 走看看