<!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>CSS使用border制作梯形</title>
  <style>
    .tixing{
        width:200px;
        border-bottom:200px solid red;
        border-left:50px solid transparent;/*transparent透明色*/
        border-right:50px solid transparent;
    }
  </style>
 </head>
 <body>
  <div class='tixing'>
  </div>
 </body>
</html>

最新文章

  1. 马虎将classname加到了id属性中,造成报错
  2. [CentOs7]搭建ftp服务器
  3. C#调用c++的dll报错:“尝试读取或写入受保护的内存。这通常指示其他内存已损坏“
  4. Entity Framework 教程
  5. 转:RTMPDump源代码分析
  6. MVC字符串处理及MVC @RenderSection小计
  7. 安装aptana插件报Error opening the editor. java.lang.NullPointerException
  8. UVA 10282 (13.08.18)
  9. 让vs2010的html编辑器验证html5语法
  10. MyReport报表引擎2.6.5.0新功能
  11. php源码分析之php_info输出中css样式是怎么来的
  12. Ubuntu iptables 设置
  13. bzoj 3192: [JLOI2013]删除物品
  14. bzoj4067 [Ctsc2015]gender
  15. 入门rocketmq从浅到深
  16. Postman学习之【压力测试】
  17. git常用方法整理
  18. 微信报错 config:fail.Error:invalid signature
  19. 整理面试问题iOS
  20. rsyslog和logrotate

热门文章

  1. 表单相关标签之textarea,select
  2. 【tmos】使用joda-time来个格式化时间
  3. gradle文件中自定义字段值在java代码中使用
  4. css - 盒子内外边距
  5. 30个极大提高开发效率的vscode插件
  6. Zookeeper环境搭建
  7. Centos7.5 VMtools的安装与卸载
  8. zookeeper安装教程
  9. 【转】shell速查表
  10. 节流(Throttling)和去抖(Debouncing)详解