SOURCE

console 命令行工具 X clear

                    
>
console
<h2>原始图像</h2>
<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/123941/sports-q-c-1000-600-3.jpg">

<h2><code>褐色(50%)</code> | <code>褐色(95%)</code></h2>
<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/123941/sports-q-c-1000-600-3.jpg">
<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/123941/sports-q-c-1000-600-3.jpg">
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  text-align: center;
  margin: 20px auto;
  font-family: 'Roboto';
}

h2 {
  margin: 20px;
  padding-top: 20px;
  clear:both;
}

img {
  max-width: 50%;
  margin: 0 auto;
  padding: 2px;
}

img:nth-of-type(1) {
  width: 100%;
}

img:nth-of-type(2) {
  -webkit-filter: sepia(50%);
  filter: sepia(50%);
}

img:nth-of-type(3) {
  -webkit-filter: sepia(95%);
  filter: sepia(95%);
}