Ce site disposera de fonctionnalités limitées pendant que nous effectuons des opérations de maintenance en vue de vous proposer un meilleur service. Si un article ne règle pas votre problème et que vous souhaitez poser une question, notre communauté d’assistance est prête à vous répondre via @FirefoxSupport sur Twitter, et /r/firefox sur Reddit.

Rechercher dans l’assistance

Évitez les escroqueries à l’assistance. Nous ne vous demanderons jamais d’appeler ou d’envoyer un SMS à un numéro de téléphone ou de partager des informations personnelles. Veuillez signaler toute activité suspecte en utilisant l’option « Signaler un abus ».

En savoir plus

Why doesn't Firefox work with https://www.dictionary.com/e/crossword/

more options

I'm using the latest version of Firefox, 62.0.3 (64-bit), and it doesn't work right with the website above. Both Edge and Chrome work, but not FireFox. It's as if the frame for the crossword puzzle is cut off and it only shows the top 20% of the frame.

I'm using the latest version of Firefox, 62.0.3 (64-bit), and it doesn't work right with the website above. Both Edge and Chrome work, but not FireFox. It's as if the frame for the crossword puzzle is cut off and it only shows the top 20% of the frame.

Toutes les réponses (1)

more options

Hmm, the embedded page with the puzzle isn't using the full height of the space allotted.

As a quick workaround, you could:

right-click the visible part of the puzzle > click This Frame > click Open Frame in New Tab

That should launch the embedded puzzle into its own tab where it will have its natural shape and size.


I don't know whether this is a new issue with a recent site revision, or has always been there. I suggest reporting this problem to the site so they can consider giving the containing div a definite height. This is for them:

The frame is set to height="100%" meaning 100% of the height of the containing div which also has height="100%". Traditionally, this only works if Firefox can compute a definite value based on a parent container, but as I click up the structure of the document, I quickly reach a point where the height is indefinite so Firefox will not improvise a value and considers it undefined. This could be where Firefox differs from other browsers.

This change to bundle.css might work:

.xword .game {
	width:100%;
	height:100%; => change to height:700px;
	min-width:732px;
	min-height:700px;
	max-height:700px;
	margin:0 0 20px
}

However, % values for the height attribute on iframe's appear to be deprecated in HTML5: https://developer.mozilla.org/docs/Web/HTML/Element/iframe#Attributes