Ky sajt do të funksionojë me kufizime, teksa bëjmë mirëmbajtjen e tij për të përmirësuar punën tuaj. Nëse një artikull nuk e zgjidh problemin tuaj dhe dëshironi të bëni një pyetje, kemi bashkësinë tonë të asistencës, e gatshme për t’ju ndihmuar, te @FirefoxSupport në Twitter dhe/r/firefox në Reddit.

Kërkoni te Asistenca

Shmangni karremëzime gjoja asistence. S’do t’ju kërkojmë kurrë të bëni një thirrje apo të dërgoni tekst te një numër telefoni, apo të na jepni të dhëna personale. Ju lutemi, raportoni veprimtari të dyshimtë duke përdorur mundësinë “Raportoni Abuzim”.

Mësoni Më Tepër

I can't used firefox anymore. It has a strange interpretation of tagged text using CSS. See www.astrophotolab.com/pr/g0925c.htm to see what I mean.

  • 4 përgjigje
  • 2 e kanë hasur këtë problem
  • 3 parje
  • Përgjigjja më e re nga zinod

more options

Chrome interprets the rt tag correctly. Firefox adds a line break and extra spacing to the red text

Chrome interprets the rt tag correctly. Firefox adds a line break and extra spacing to the red text

Zgjidhje e zgjedhur

Or if that is not your website, you could use a custom style rule to override their coding. You can apply custom style rules to sites using either the Stylish extension or a userContent.css file.

Lexojeni këtë përgjigje brenda kontekstit 👍 1

Krejt Përgjigjet (4)

more options

Hmm, why are you using rt tags? Those are meant to position annotations in relation to other text, as described in this article:

http://www.w3.org/International/articles/ruby/

Well, I guess you can adapt these tags to your purpose if you override their standard behavior. To force rt tags to behave more like span and other tags that do not cause a line break, add this to your style rules for rt tags in your astrostyle.css file:

rt { 
font-family:Arial,sans-serif; 
color:#FF0000; 
font-size:10pt;
font-weight:bold;
display:inline;
}
more options

Zgjidhja e Zgjedhur

Or if that is not your website, you could use a custom style rule to override their coding. You can apply custom style rules to sites using either the Stylish extension or a userContent.css file.

more options

Yes, astrophotolab.com is my website. I wasn't aware that <rt> had a specific use. I'll try your override or I'll change the tag name.

more options

Thanks guys, problem solved. Much appreciated