<!DOCTYPE html> <head> <title>text-indent test</title> <style type="text/css"> div { width: 500px; } p { width: 300px; text-indent: 50px; } </style> </head> <body> <div> <p>text</p> </div> </body> </html>