SOURCE

console 命令行工具 X clear

                    
>
console
<html>
<style>
#o {
  width: 320px;
  height: 325px;
}
#b {
  position: relative;
  width: 300px;
  height: 300px;
  border: 2px solid #aaa;
  border-radius: 40px;
  box-shadow: 3px 15px 15px #888;
}
#f {
  position: absolute;
  width: 296px;
  height: 180px;
  left: 2px;
  top: 60px;
  background-color: red;
  transform: skew(-8deg) rotate(-8deg);
  color: white;
  font: bold 120px/180px '微软雅黑';
  text-align: center;
}
</style>
<body>
  <div id="o">
  <div id="b">
    <div id="f"><span>头条</span></div>
  </div>
  </div>
</body>
</html>