How to remove italic style in css

青灯夜游
Release: 2023-01-05 16:09:01
Original
3489 people have browsed it

In CSS, you can use the font-style attribute to remove the italic style. You only need to set the "font-style: normal;" style to the element. The font-style attribute can specify the font style of text. When the value is set to "normal", the browser displays a standard font style.

How to remove italic style in css

The operating environment of this tutorial: Windows 7 system, CSS3&&HTML5 version, Dell G3 computer.

In HTML, the i tag comes with italic style by default

正常字体
测试字体

Copy after login

Rendering:

How to remove italic style in css

How to remove it Italic style for i tag?You can use the font-style attribute, syntax:

i{ font-style: normal; }
Copy after login

Rendering:

How to remove italic style in css

##css font-style attribute

The font-style attribute specifies the font style of the text.

Attribute value:

Value Description normal default value. The browser displays a standard font style. italic The browser will display an italic font style. oblique The browser will display an oblique font style. inherit Specifies that the font style should be inherited from the parent element.
(Learning video sharing:

css video tutorial)

The above is the detailed content of How to remove italic style in css. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
css
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!