首页htmltext_shadowCSS Property Value - 如何text-shadow: 0px 0px 3px orange;

CSS Property Value - 如何text-shadow: 0px 0px 3px orange;

我们想知道如何text-shadow: 0px 0px 3px orange;


<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
div {
  color: gray;
  text-shadow: 0px 0px 3px orange;
}
</style>
</head>
<body>
  <div>Hello World</div>
</body>
</html>