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