A student wrote the following code to change the text style of a paragraph. But the text color remains black in IE browser. Why? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

A student wrote the following code to change the text style of a paragraph. But the text color remains black in IE browser. Why?

The code. <style type="css/text"> P { color: red; font-size: 200%; } </style> Options: 1) Browser settings do not allow connecting global styles 2) The style is defined for the <p> tag, but it should be for the <body> 3) Error in style property 4) Invalid type attribute value 5) Document has no <!DOCTYPE> set

23rd Jan 2023, 2:57 PM
O.•.I.•.S.•.H.•.A
O.•.I.•.S.•.H.•.A - avatar
3 Answers
+ 2
If this is a community challenge, you need to ask in your Community Feed. The Q&A section is for help that is needed, not challenges.
23rd Jan 2023, 3:21 PM
Justice
Justice - avatar
+ 1
no 4.Invalid type attribute value The type attribute of the <style> tag should be set to "text/css" instead of "css/text" to indicate that the contents of the tag are CSS styles. The correct code should be: Copy code <style type="text/css"> p { color: red; font-size: 200%; } </style> This way the browser will be able to understand that the styles are written in CSS and will apply them accordingly.
25th Jan 2023, 12:19 AM
Walter joseph
Walter joseph - avatar
0
IE in 2023 🤔🤔🤔🤔
23rd Jan 2023, 9:08 PM
Arturop
Arturop - avatar