2 回答
叮当猫咪
TA贡献1776条经验 获得超12个赞
可以。用CSS可以做到。但是CSS3在IE9以下的浏览器支持不好。我写个例子,先看效果(火狐下):
代码:
<!DOCTYPE html> < html > < head > < meta charset = "utf-8" /> < link href = "xxx/apple-touch-icon.png" rel = "apple-touch-icon-precomposed" /> < title >CSS3 多边形</ title > </ head > < body > < style type = "text/css" > .pxsbx{ width: 100px; height: 60px; -webkit-transform: skew(-20deg); -moz-transform: skew(-20deg); -o-transform: skew(-20deg); background: #669;margin-left:20px; } </ style > < div class = "pxsbx" ></ div > </ body > </ html > |
慕娘9325324
TA贡献1783条经验 获得超4个赞
添加回答
举报
0/150
提交
取消