Result Size: 625 x 534
x
 
<!DOCTYPE html>
<html>
<body>
<p id="demo">这是一个示例段落。</p>
<button type="button" onclick="myFunction()">设置字母间距</button>
<script>
function myFunction() {
  document.getElementById("demo").style.letterSpacing = "15px";
}
</script>
</body>
</html>