文字处理

HTML

<dl>
  <dt>name</dt>
  <dd>legoles</dd>
  <dt>email</dt>
  <dd>[email protected]</dd>
  <dd>[email protected]</dd>
  <dd>[email protected]</dd>
  <dd>[email protected]</dd>
  <dd>[email protected]</dd>
  <dd>[email protected]</dd>
  <dt>age</dt>
  <dd>30</dd>
</dl>
<h1>happy new year!</h1>
<h2>happy new year!</h2>
<h3>happy new year!</h3>
<h4>happy new year!</h4>

CSS

dl {
  padding: 0 .5em;
  line-height: 1.5;
  background: #fdfdfd;
  background-size: auto 3em;
  background-origin: content-box;
  background-image: linear-gradient(rgba(0, 0, 0, .05) 50%, transparent 0);
}
dt, dd {
  display: inline;
}
dd {
  margin: 0;
  font-weight: bold;
}
dd + dt:before {
  content: '\A';
  white-space: pre;
}
dd + dd:before {
  content: ',';
  font-weight: 200;
  margin-left: -.25em;
}
h1 {
  text-align: center;
  margin-top: 20px;
  font-size: 48px;
  color: #390;
  display: inline-block;
  background: linear-gradient(#390, #390) no-repeat;
  background-size: 100% 2px;
  background-position: 0 1em;
  text-shadow: .1em 0 white, -.1em 0 white;
}
h2 {
  color: #fff;
  text-shadow: 1px -1px 1px #000;
  font-size: 48px;
  color: #eee;
}
h3 {
  font-size: 48px;
  color: #fff;
  text-shadow: 1px 1px #000,
               1px -1px #000,
               -1px 1px #000,
               -1px -1px #000
}
h4 {
  font-size: 48px;
  color: #f30;
  text-shadow: 1px 1px hsl(0, 0%, 60%),
               2px 2px hsl(0, 0%, 55%),
               3px 3px hsl(0, 0%, 50%),
               4px 4px hsl(0, 0%, 45%),
               5px 5px hsl(0, 0%, 40%)
}