หากต้องการลบเส้นขอบออกจากองค์ประกอบที่แก้ไขได้ โค้ดมีดังต่อไปนี้ -
ตัวอย่าง
<!DOCTYPE html> <html> <head> <style> body{ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; } p{ font-size: 40px; } [contenteditable] { outline: 0px solid transparent; } </style> </head> <body> <h1>Remove Contenteditable Border Example</h1> <p contenteditable="true">This is a contenteditable paragraph which you can edit</p> </body> </html>
ผลลัพธ์
รหัสข้างต้นจะสร้างผลลัพธ์ต่อไปนี้ -
เมื่อคลิกที่ย่อหน้า คุณสามารถแก้ไขได้ดังในภาพหน้าจอด้านล่าง -