TutorialKart
index.html
►
Run
Reset
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <style> input:placeholder-shown::before { content: "🔍"; color: gray; position: absolute; left: 10px; top: 50%; transform: translateY(-50%); } input:not(:placeholder-shown)::before { content: ""; } </style> </head> <body> <input type="text" placeholder="Search"> </body> </html>