Editor Arrow Download Open
<!DOCTYPE html> <html> <head> <title>CSS initial Keyword</title> <style> p { color: blue; font-size: 35px; } span { color: initial; font-size: initial; } </style> </head> <body> <p> This is a paragraph text <span>This text size and color are initial</span> This is a paragraph text </p> </body> </html>
  Preview Arrow