首页 > css3整理--border-radius

css3整理--border-radius

1、border-radius

标准:

border-top-left-radius: x y // 左上角,x 圆角水平半径, y 圆角垂直半径

border-top-right-radius:x y

border-bottom-right-radius:x y

border-bottom-left-radius:x y

FF:

-moz-border-radius-topleft

-moz-border-radius-topright

-moz-border-radius-bottomright

-moz-border-radius-bottomleft

chrome:(标准基础上加前缀)

-webkit-border-top-left-radius

-webkit-border-top-right-radius

-webkit-border-bottom-left-radius

-webkit-border-bottom-right-radius

 

更多相关:

  • 执行脚本结果重定向 sh hah.sh hello 1>>/home/qiso/job.log 2>&1 上面这句话的意思是 首先通过sh执行脚本hah.sh,其中执行这个脚本的时候,需要传入参数,参数是hello, 1表示的是标准输出,以上脚本执行完毕之后,首先执行2>1这个意思是说将标准错误重定向到标准输出,0,1,2分别...