blob: 87ac8a979ccb9a07d1c719163e0615e00c08368a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<!DOCTYPE html>
<style>
button {
max-height: 50px;
padding: 23px;
border: 1px solid black;
box-sizing: border-box;
overflow: hidden;
}
</style>
<button>Some text</button>
|