http://www.w3schools.com/cssref/tryit.asp?filename=trycss_letter-spacing
<!DOCTYPE html>
<html>
<head>
<style>
h1 {
letter-spacing: 2px;
}
h2 {
letter-spacing: -3px;
}
</style>
</head>
<body>
<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
</body>
</html>
===========================
hasil
This is heading 1
This is heading 2
============================
2222
===========================
http://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_style_letterspacing
=========================
<!DOCTYPE html>
<html>
<body>
<p id="myP">This is an example paragraph.</p>
<button type="button" onclick="myFunction()">Set letter spacing</button>
<script>
function myFunction() {
document.getElementById("myP").style.letterSpacing = "15px";
}
</script>
</body>
</html>
=====================
0 Response to "letter-spacing"
Posting Komentar