Windows 10 will reach EOS (end of support) on October 14, 2025. For more information, see this article.

Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Starting with version 17 is not working styles in the text HTML, example: <STYLE TYPE="text/css"> H1, H2 {Text-align: center} H3, P {Text-indent: 30} </ STYLE>

  • 3 replies
  • 2 have this problem
  • 3 views
  • Last reply by DykPaganel

more options

At the beginning of each page of my site (www.hllab.dp.ua) a description of styles:

<STYLE TYPE="text/css"> H1, H2 {Text-align: center} H3, P {Text-indent: 30}

In version 16 and above, as well as in other browsers Text-indent shows normal. After the upgrade to version 17 paragraphs appears without indentation.

At the beginning of each page of my site (www.hllab.dp.ua) a description of styles: <STYLE TYPE="text/css"> H1, H2 {Text-align: center} H3, P {Text-indent: 30} </ STYLE> In version 16 and above, as well as in other browsers Text-indent shows normal. After the upgrade to version 17 paragraphs appears without indentation.

Chosen solution

The Газета page is missing the "px" (Text-indent: 30 instead of 30px) in the style section and is ignored by Firefox:

<STYLE TYPE="text/css"> H1, H2 {Text-align: center} H3, P {Text-indent: 30} </STYLE>

The pages that work have Text-indent: 30px

<STYLE TYPE="text/css">
H1, H2  {Text-align: center}
H3, P {Text-indent: 30px}
</STYLE>

Read this answer in context 👍 1

All Replies (3)

more options

Seems to have paragraph indents here:
Скаутинг

What is different about that frameset in comparison to your other framesets? Do you have the 30px on all the framesets? Or just 30?

You might want to consider adding a DOCTYPE Declaration for "HTML 4.01 Frameset" to your pages, so Firefox can display your pages in standards compliance mode rather than the quirks mode.

http://en.wikipedia.org/wiki/Doctype
http://en.wikipedia.org/wiki/Quirks_Mode

more options

Chosen Solution

The Газета page is missing the "px" (Text-indent: 30 instead of 30px) in the style section and is ignored by Firefox:

<STYLE TYPE="text/css"> H1, H2 {Text-align: center} H3, P {Text-indent: 30} </STYLE>

The pages that work have Text-indent: 30px

<STYLE TYPE="text/css">
H1, H2  {Text-align: center}
H3, P {Text-indent: 30px}
</STYLE>

more options

Sorry. This is my problem. Thank you for your advice.