Maison  >  Article  >  interface Web  >  Html轻松实现圆角矩形示例

Html轻松实现圆角矩形示例

高洛峰
高洛峰original
2017-03-12 17:05:492875parcourir

这篇文章主要为大家详细介绍Html轻松实现圆角矩形示例的方法,告诉大家如何通过p+css以及定位来实现圆角矩形?感兴趣的小伙伴们可以参考一下

问题:如何通过p+css以及定位来实现圆角矩形?
 
解决方法概述:
 
内容:首先在6c04bd5ca3fcae76e30b72ad730ca86d标签内部里添加一个大层(大层用来固定整体大框架),然后大层内包含四个小层(四个小层里分别放四个圆角(事先用ps做好椭圆形形状,然后用切片工具切图 ))
 
样式:在8cea2e99ba256aa9b779f5ab5949ca21标签内部设置的css要有的属性
 
1.position:relative;
 
2.宽和高;
 
3背景颜色;
 
4.边框线(用来调整四个原角的相对位置,调整好后可以将边框线设置删除)
 
在设置小层的css时,每个层里都要有的属性有:
 
1.position:absolute;
 
2.宽和高;
 
3.方向属性(leftrightbottom,top
 
4.background:url("")no-repeat;(引入各个方向的圆角图片)
 
以下是我实现圆角矩形的代码:

!doctype html>  
  
<html lang="en">    
  
 <head>  
  
  <meta charset="UTF-8">  
  
  <meta name="Generator" content="EditPlus®">  
  
  <meta name="Author" content="">  
  
  <meta name="Keywords" content="">  
  
  <meta name="Description" content="">  
  
  <title>圆角制作</title>  
  
  <style type=text/css>  
  
  #p   
  
    
  
  {   
  
  position:relative;   
  
  width:400px;   
  
  height:200px;   
  
  background:black;   
  
  margin:auto;   
  
  }   
  
  #plefttop   
  
  {    
  
  position:absolute;   
  
  width:50px;   
  
  height:50px;    
  
 background:url("images/11.jpg") no-repeat;   
  
  }   
  
   #prighttop    
  
  {   
  
  position:absolute;   
  
  width:50px;   
  
  height:50px;   
  
  right:-9px;   
  
  top:0px;    
  
  background:url("images/22.jpg")  no-repeat;   
  
  }   
  
   #pleftbottom   
  
  {   
  
  position:absolute;   
  
  width:50px;   
  
  height:50px;   
  
  left:0px;   
  
  bottom:-14px;   
  
  background:url("images/33.jpg") no-repeat;   
  
  }   
  
  #prightbottom   
  
  {   
  
   position:absolute;   
  
  width:50px;   
  
  height:50px;   
  
  right:-9px;   
  
  bottom:-14px;   
  
  background:url("images/44.jpg") no-repeat;   
  
  }   
  
  </style>  
  
 </head>  
  
 <body>  
  
<p id=p>  
  
<p id=plefttop></p>  
  
<p id=prighttop></p>  
  
<p id=pleftbottom></p>  
  
<p id=prightbottom></p>  
  
</p>  
  
</body>  
  
</html>

注意:我的代码里用的css样式是内联式,CSS样式有三种:内联式,嵌入式,外部式。

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn