Nieuw lid |
|
Met html/css is dit niet mogelijk, je kan wel met javascript het aantal px opvragen van de browserhoogte - 150 px
<html>
<body>
<button onclick="alert('hoogte van de body - 150 px = '+( body.clientHeight - 150)+ ' px');">clientHeight</button>
</body>
</html>
<button onclick="alert('hoogte van de body - 150 px = '+( body.clientHeight - 150)+ ' px');">clientHeight </button>
edit, oh, die van WumTol kende ik nog niet, goeie tip |