Chạy thử Ví dụ Thuộc tính font-style trong CSS

Chạy thử Ví dụ Thuộc tính font-style trong CSS

Chạy thử Ví dụ Thuộc tính font-style trong CSS

Tự code rồi chạy thử... Chạy Thử
<!DOCTYPE html>
<html>
<head>
<title>Chạy thử Ví dụ Thuộc tính font-style trong CSS</title>
<style>
body {font-family: Arial, Helvetica, sans-serif;}
</style>
</head>
<body>
  
  <h1>Chạy thử Ví dụ Thuộc tính font-style trong CSS</h1>
  
  <p>Dùng để in nghiên văn bản trong phần tử HTML bằng giá trị italic hoặc oblique, ngoài ra còn chọn được kiểu chữ thường không phải in nghiên:</p>
  
  <p style="font-style: italic;">font-style: italic;</p>
  
  <p style="font-style: oblique;">font-style: oblique;</p>
  
  <p style="font-style: normal;">font-style: normal;</p>
  
  <p style="font-style: initial;">font-style: initial;</p>
  
  <p style="font-style: inherit;">font-style: inherit;</p>
  
  <p style="font-style: revert;">font-style: revert;</p>
  
  <p style="font-style: revert-layer;">font-style: revert-layer;</p>
  
  <p style="font-style: unset;">font-style: unset;</p>
  
</body>
</html>
Chạy thử Ví dụ Thuộc tính font-style trong CSS nằm trong bài viết Thuộc tính font-style trong CSS