为了账号安全,请及时绑定邮箱和手机立即绑定

帮我看看为什么显示不出来那个效果?

按照老师的步骤来写的代码,但是我只能实现四个角的上面的左边和右边的角变成圆角,但是不能将下面的左边和右边的角变成圆角,这个是为什么?部分代码:

.l_top_radius{

background:url(../images/l_top_radius.gif) no-repeat;

width:4px;

height:3px;

position:absolute;

left:0;

top:0;}

.r_top_radius{

background:url(../images/r_top_radius.gif) no-repeat;

width:4px;

height:3px;

position:absolute;

top:0;

right:0;}

.l_btm_radius{

background:url(../images/l_btm_radius.gif) no-repeat;

width:4px;

width:3px;

position:absolute;

bottom:0;

left:0;}

.r_btm_radius{

background:url(../images/r_btm_radius.gif) no-repeat;

width:0;

height:0;

position:absolute;

bottom:0;

right:0;}


正在回答

1 回答

55ed330f0001be5005000340.jpg

55ed331100015c0e05000338.jpg


你的代码写错了,我用chrome的开发者工具给你指出来了,详细看图片。

另附正确代码如下:

.l_top_radius{
  background:url(l_top_radius.gif) no-repeat;
  width:4px;
  height:3px;
  position:absolute;
  left:0;
  top:0;
}
.r_top_radius{
  background:url(r_top_radius.gif) no-repeat;
  width:4px;
  height:3px;
  position:absolute;
  top:0;
  right:0;
}
.l_btm_radius{
  background:url(l_btm_radius.gif) no-repeat;
  width:4px;
  height:3px;  /*-----*/
  position:absolute;
  bottom:0;
  left:0;
}
.r_btm_radius{
  background:url(r_btm_radius.gif) no-repeat;
  width:4px;   /*-----*/
  height:3px;  /*-----*/
  position:absolute;
  bottom:0;
  right:0;
}


1 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
CSS圆角进化论
  • 参与学习       26413    人
  • 解答问题       95    个

CSS小圆角,三种制作方式都教给你,并详细讲解每一种的实现方式

进入课程

帮我看看为什么显示不出来那个效果?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信