Om de ûnderfining foar jo te ferbetterjen is tydlik de funksjonaliteit dan dizze website troch ûnderhâldswurk beheind. Wannear in artikel jo probleem net oplost en jo in fraach stelle wolle, kin ús stipemienskip jo helpe yn @FirefoxSupport op Twitter en /r/firefox op Reddit.

Sykje yn Support

Mij stipescams. Wy sille jo nea freegje in telefoannûmer te beljen, der in sms nei ta te stjoeren of persoanlike gegevens te dielen. Meld fertochte aktiviteit mei de opsje ‘Misbrûk melde’.

Mear ynfo

Dizze konversaasje is argivearre. Stel in nije fraach as jo help nedich hawwe.

Firefox won't run my HTML, but Chrome and Edge do

more options

I have created an HTML file in notepad to run a clickable calendar for our library website. This is an html table with the background set as an image of our calendar with anchors in the cells linking to our events placed across the table. When you click on an event, it links to the webpage on our site that corresponds to that event. This works flawlessly on Chrome and Edge, but will not work on Firefox. The image loads, but when you hover over the calendar, none of the links are detected (the pointer does not change, the link does not appear in the bottom left corner, it just appears like a static image) and when you click on the titles of the events, nothing happens. However, when I inspect element and hover over my code, It shows the buttons are there (see images.) Any idea what is happening?

The link to our current calendar ishere

I have created an HTML file in notepad to run a clickable calendar for our library website. This is an html table with the background set as an image of our calendar with anchors in the cells linking to our events placed across the table. When you click on an event, it links to the webpage on our site that corresponds to that event. This works flawlessly on Chrome and Edge, but will not work on Firefox. The image loads, but when you hover over the calendar, none of the links are detected (the pointer does not change, the link does not appear in the bottom left corner, it just appears like a static image) and when you click on the titles of the events, nothing happens. However, when I inspect element and hover over my code, It shows the buttons are there (see images.) Any idea what is happening? The link to our current calendar is[https://www.seguintexas.gov/click_cal_OCT1200px.html here]
Keppele skermôfbyldingen

Keazen oplossing

Yea I understand, but I think that a parent shouldn't have 0 size.

Dit antwurd yn kontekst lêze 👍 0

Alle antwurden (5)

more options

Firstable, try to add

 td {
    height: inherit;
}
more options

Hi, thanks I'm not having trouble with the button size, they just won't appear/ aren't active within the firefox browser. When I hover my mouse over the titles, there is nothing to click on. It only works in chrome and edge.

more options

Keazen oplossing

Yea I understand, but I think that a parent shouldn't have 0 size.

more options

That fixed it! You are a miracle worker, thank you!!! :)

more options

Hi mara, the reason for this problem/solution is that the link having 100% of the height of the cell is undefined in Firefox. Firefox needs a height set on the parent when the child's height is set as a percentage.