<html> <head> <title>css圆角效果</title> <meta http-equiv="content-type" content="text/html; charset=gb2312"> <style type="text/css"> div.RoundedCorner{background:
原创 2013-08-16 09:42:44
560阅读
首先介绍下什么是htc文件 htc文件是一种脚本文件 在ie6 7 8 都需要用到htc文件实现圆角调用代码如下 .mydiv{ border: 2px solid #C0C0C0; -moz-border-radius: 10px;         // firefox 圆角 -webkit-border
原创 2011-03-01 09:53:02
705阅读
代码: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xh
转载 2010-03-12 22:44:27
188阅读
利用DIV+CSS生成圆角边框,在很多情况下都会用到,目前DIV+CSS圆角边框,一种是利用CSS3,一种角是圆角非常方便,代码如下...
原创 2023-07-21 16:22:18
139阅读
<style type="text/css">.test{ display: inline-block;padding: 5px 10px 6px;text-decoration: none;border-radius: 5px;-moz-border-radius: 5px;-webkit-border-radius: 5px;-moz-box-shadow: 0 1px 2px r
css
原创 2022-06-30 14:46:24
651阅读
简洁型css圆角:方法1:简洁型css圆角
转载 2021-07-22 09:44:22
270阅读
主要代码:<style type="text/css"> #roundcorner{ font-family: Arial; border: 2px solid #379082; border-radius: 20px; padding: 30px 30px; width: 330px; }</style> 
原创 2016-09-21 18:12:13
463阅读
​<html<head>    <title>无标题页</title>    <style>.up1{    overflow:hidden;     height:1px;    margin-left:4px;    margin-right:4px;    background-color: Aqua;    border-left:so
转载 2008-10-29 14:12:00
93阅读
2评论
content
转载 2007-10-17 15:32:00
238阅读
2评论
CSS代码:-moz-border-radius: 15px; /* Gecko browsers */-webkit-border-radius: 15px; /* Webkit browsers */border-radius:15px; /* W3C syn...
原创 2022-04-30 15:08:46
337阅读
例子1: <!DOCTYPE html> <html lang="en"> <head> <style> div { width: 350px; height: 100px; padding: 15px 0px 0px 25px; } .one { border-top-left-radius: 2 ...
转载 2021-09-30 16:56:00
444阅读
2评论
css圆角(border-radius)的深入理解写在前面:1.介绍: 在border-radius出来之前,传统的生成圆角,必须使用多张图片作为背景图案,浪费很多的时间。 css3圆角的出现,使我们再也不必浪费时间去制作这些图片了,并且可以减少文件维护的工作量、提高网页性能,增加视觉可靠性。 2.border-radius: 这是一个简写属性,用来设置: border-top-lef
1.css3实现圆角矩形,兼容性有问题<div id="round"></div> #round {     padding:10px; width:300px; height:50px;     border: 5px&nb
原创 2013-06-04 17:11:34
4280阅读
2点赞
2评论
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML Strict//EN"><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><html xmlns="http://www.w3.org/1999/xhtml"><head> <style> * { padding-bottom: 0px; margin: 0px; padding-left: 0
转载 2011-02-27 15:43:00
117阅读
2评论
尽力使初学者看起来简单。CSS3 在这里还没有得到完全的应用,所以,知道现在,我...
原创 2023-07-28 19:12:06
105阅读
CSS|圆角边框设置边框的角,使用border-radius它一共有四个参数,分别代表左上角、右上角、右下角、左下角的曲折程度;如果只写三个参数,那么分别代表
原创 2022-07-11 16:39:15
1603阅读
#xianshi{ width:230px; height:50px; position:absolute; left:10px; top:10%; margin-right:129px; margin-top:0px; lavender; -webkit-border-radius: 8px; -moz-border-radius: 8px; border-radius:
原创 2013-05-31 06:36:40
1041阅读
CSS圆角、画圆,目前主流浏览器已经支持
原创 2014-09-26 07:56:08
787阅读
00015.jpg 圆角CSS中,添加圆角需要用到border-radius属性。 image.png HTML代码:<div class="speciaBox"></div>CSS代码:.speciaBox { width: 300px; height: 200px
...
IT
转载 2021-11-02 23:36:00
469阅读
2评论
  • 1
  • 2
  • 3
  • 4
  • 5