首页htmltext_shadowCSS Property Value - 如何text-shadow: 2px 2px 0 #fff;

CSS Property Value - 如何text-shadow: 2px 2px 0 #fff;

我们想知道如何text-shadow: 2px 2px 0 #fff;

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
body {
  background: #000
}

h1 {
  font-size: 25px;
  font-family: Arial;
  color: #F90;
  text-shadow: 2px 2px 0 #fff;
}
</style>
</head>
<body>
  <h1>Text with text-shadow</h1>
</body>
</html>