Ask Question Forum:
Model Library:2025-02-08 Updated:A.I. model is online for auto reply question page
C
O
M
P
U
T
E
R
2
8
Show
#
ASK
RECENT
←
- Underline
- Bold
- Italic
- Indent
- Step
- Bullet
- Quote
- Cut
- Copy
- Paste
- Table
- Spelling
- Find & Replace
- Undo
- Redo
- Link
- Attach
- Clear
- Code
Below area will not be traslated by Google,you can input code or other languages
Hint:If find spelling error, You need to correct it,1 by 1 or ignore it (code area won't be checked).
X-position of the mouse cursor
Y-position of the mouse cursor
Y-position of the mouse cursor
Testcursor
caretPos
Attachment:===
Asked by gplana
at 2024-11-02 09:55:58
Point:500 Replies:16 POST_ID:828771USER_ID:11366
Topic:
Cascading Style Sheets (CSS);Hypertext Markup Language (HTML);jQuery
Hi.
Please look at this site: http://www.gapla.cat/cita-AP/htmlsite
This is a static html page extracted from my project to show you the issue: you can see on the bottom right box a table. The content of the table (the table body, but not the header) should be scrollable. It is working fine on FireFox, but is it not working on Internet Explorer (tested on IE7 and IE9).
Please look at this site: http://www.gapla.cat/cita-AP/htmlsite
This is a static html page extracted from my project to show you the issue: you can see on the bottom right box a table. The content of the table (the table body, but not the header) should be scrollable. It is working fine on FireFox, but is it not working on Internet Explorer (tested on IE7 and IE9).
Expert: duncanb7 replied at 2024-11-02 11:03:32
I am sorry, I might quit here and just let Gary follow it
Thanks for your reply
have a nice day
Duncan
Thanks for your reply
have a nice day
Duncan
Author: gplana replied at 2024-11-02 11:03:21
Excellent. This seems to do the job.
Thank you very much.
Thank you very much.
Expert: Gary replied at 2024-11-02 11:03:19
Just use the method above with the div, I cannot completely test properly in IE9 but the above will work.
Author: gplana replied at 2024-11-02 10:59:54
GaryC123 styles are now copied to table, but scroll still doesn't work and now also the header row is too high.
Accepted Solution
Expert: Gary replied at 2024-11-02 10:59:42
500 points EXCELLENT
If that doesn't work then you will need to wrap your table in a scrollable div e.g.
<div style="height: 357px; display: block; overflow-y: auto;overflow-x:hidden">
<table>
....
</table>
</div>
<div style="height: 357px; display: block; overflow-y: auto;overflow-x:hidden">
<table>
....
</table>
</div>
Author: gplana replied at 2024-11-02 10:56:28
Sorry guys, but I think we are chatting about another thing. The problem here is to make work that page on IE. Isn't this possible?
Expert: Gary replied at 2024-11-02 10:56:21
@duncanb7
Your comments are nothing to do with the question. Either keep your comments related to the question or do not comment at all.
Your comments are nothing to do with the question. Either keep your comments related to the question or do not comment at all.
Expert: Gary replied at 2024-11-02 10:55:39
Move these styles so they are applied to the table and not the tbody
display: block;
height: 357px;
overflow: auto;
display: block;
height: 357px;
overflow: auto;
Expert: duncanb7 replied at 2024-11-02 10:43:28
How do you think which browser is better and faster, GaryC123 ?
After I switch to Chrome, I never experience many technical issue as IE does
And I also gave up FF since FF's latest version is much much slower
than its older version and Chrome.
Even the data just check and based on W3schools server but I think that
is liable if you look at how many users use w3schools daily by Alexa's rank
for global, I believe the stat sample users is larger enough for statistic
Please advise
Duncan
After I switch to Chrome, I never experience many technical issue as IE does
And I also gave up FF since FF's latest version is much much slower
than its older version and Chrome.
Even the data just check and based on W3schools server but I think that
is liable if you look at how many users use w3schools daily by Alexa's rank
for global, I believe the stat sample users is larger enough for statistic
Please advise
Duncan
Author: gplana replied at 2024-11-02 10:43:20
Sorry, I have to make this page work on IE and Firefox.
Author: gplana replied at 2024-11-02 10:41:08
On firefox is working but n IE9 is not working.
Expert: Gary replied at 2024-11-02 10:40:17
@ duncanb7
That's funny lol
IE usage is around 30% (and increasing) - w3schools stats are not reliable since they measure their own usage which by the very nature of their site is developers who tend to use FF and Chrome.
That's funny lol
IE usage is around 30% (and increasing) - w3schools stats are not reliable since they measure their own usage which by the very nature of their site is developers who tend to use FF and Chrome.
Expert: Gary replied at 2024-11-02 10:37:16
Do an hard refresh and you will see it is now working.
Expert: duncanb7 replied at 2024-11-02 10:36:34
http://www.w3schools.com/browsers/browsers_stats.asp
If you look at this browser stat on the link, you can see
IE usage is dropping into 1x % and IE has a lot of
techincal issue,
So I suggest why ask your users switch to Google Chrome instead of
keeping wasting time on IE that I did before and give it up in last two years.
Chrome browser is much faster and stable than Firefox and specially for IE
And I ran you site on my IE that is working for scroll
If you look at this browser stat on the link, you can see
IE usage is dropping into 1x % and IE has a lot of
techincal issue,
So I suggest why ask your users switch to Google Chrome instead of
keeping wasting time on IE that I did before and give it up in last two years.
Chrome browser is much faster and stable than Firefox and specially for IE
And I ran you site on my IE that is working for scroll
Author: gplana replied at 2024-11-02 10:26:41
Thank you for your answer. This seems not to be the problem. I have added the doctype but the issue still stays.
Expert: Gary replied at 2024-11-02 10:22:47
You have no doctype so the page is going into quirks mode, add this to the beginning of your page and it should then work
<!DOCTYPE html>
<!DOCTYPE html>