
De situatie is als volgt, ik heb een textarea die in een div staat (zie boven), in mozilla staat hij netjes binnenin de div, in internet explorer staat hij 3 kwart in de div, en een kwart erbuiten..
Ik heb vanalles geprobeerd, maar weet niet wat het nou is, iemand anders wel?
HTML:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
| <html> <head> <title>bla</title> <style type="text/css"> * { -moz-box-sizing: 0px; box-sizing: 0px; } body, html { margin: 0px; background-color: #000; } .main { left: 50%; margin-left: -278px; top: 50%; margin-top: -257px; position: absolute; width: 556px; height: 514px; text-align: center; font-family: verdana; border: 1px solid white; } a { color: #fff; text-decoration: none; } a:hover { color: #ccc; text-decoration: underline; } </style> <script language="javascript" type="text/javascript"> var win = null; function NewWindow(mypage,myname,w,h,scroll){ LeftPosition = (screen.width) ? (screen.width-w)/2 : 0; TopPosition = (screen.height) ? (screen.height-h)/2 : 0; settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable' win = window.open(mypage,myname,settings) if(win.window.focus){win.window.focus();} } </script> </head> <body> <div class="main"> [img]"images/abc.png"[/img]<br> <textarea style="height: 200px; width: 556px; color: #fff; background-color: #333; border: 1px solid white; margin-top: 50px; margin-bottom: 20px;">yadda yadda yadda </textarea><br> <a href="#">linkje</a> </div> </body> </html> |
rm -rf ~/.signature