blob: 4f6db950dd69c0ee79fb5a9fca0a1cf23181710e (
plain)
1
2
3
4
5
6
7
8
|
<!DOCTYPE html>
<html>
<body>
<button style="height: 20px; overflow: hidden; text-indent: 300px; width: 200px;">a</button><br>
<button style="height: 20px; overflow: scroll; text-indent: 300px; width: 200px;">b</button><br>
<button style="height: 20px; overflow: auto; text-indent: 300px; width: 200px;">c</button>
</body>
</html>
|