الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> textarea { border: 2px solid gray; border-radius: 6px; background: white; margin-top: 8px; padding: 12px 15px; box-sizing: border-box; width: 100%; height: 150px; resize: vertical; } </style> </head> <body> <h2>Textarea resize property</h2> <form> <label for="desc">Description</label> <textarea type="text" id="desc" placeholder="No text yet .."></textarea> </form> </body> </html>