文章
产品
干货
笔记
专题
教程
HTML
CSS
Git
javaScript
正则表达式
Gulp
vue后台管理系统
源代码
点击运行
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>css样式</title> <style> body{ font-size: 20px; } .normal{ font-style: normal; } .italic{ font-style: italic; } .oblique{ font-style: oblique; } .inherit{ font-style: inherit; } </style> </head> <body> <p class="normal">测试字体font-style样式666</p> <p class="italic">测试字体font-style样式666</p> <p class="oblique">测试字体font-style样式666</p> <p class="inherit">测试字体font-style样式666</p> </body> </html>
运行结果