blob: c04e838555cbdd8bd5a3af0c39dcbeb43adc79d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!DOCTYPE html>
<body>
<input id=text1 style="box-sizing:border-box; width:100px; text-align:right;" value="Hello world">
<input id=text2 style="box-sizing:border-box; width:100px; text-align:right;" placeholder="Hello world">
<input id=text3 style="box-sizing:border-box; width:100px; text-align:right;" value="Hello world">
<input id=text4 style="box-sizing:border-box; width:100px; text-align:right;" placeholder="Hello world">
<script>
document.body.offsetLeft;
document.getElementById('text1').style.paddingLeft = '40px';
document.getElementById('text2').style.paddingLeft = '40px';
document.getElementById('text3').style.borderLeftWidth = '40px';
document.getElementById('text4').style.borderLeftWidth = '40px';
</script>
</body>
|