如何在 HTML 中标记插入文本?
待插入内容用下划线做标记。下划线用于帮助引起对文本的注意。
我们使用 <ins> 标记在 HTML 中标记文本。它表示网页内容中与其他文本的不同样式的文本。
我们还可以使用 style 属性在 HTML 中标记文本。style 属性为元素指定了内联样式。此属性用于 HTML <p> 标记内,使用 CSS 属性 text-decoration 属性。
语法
以下是 <ins> 标记的语法。
<ins>The text to be inserted</ins>
示例
以下是在 HTML 中标记插入文本的示例程序。
<!DOCTYPE html> <html> <head> </head> <body> <p>DLF stands for</p><ins>Delhi Land and Finance</ins> <p>Delhi Land and Finance is one of the largest commercial real estate developer in India.</p> </body> </html>
使用内联 CSS 标记插入文本
使用 CSS 属性给文本加下划线。此属性在 <p> 标记内使用。
语法
以下是使用 CSS 属性标记插入文本的语法。
<p style="text decoration:underline;">The content to be underlined</p>
示例
以下是使用 CSS 属性标记插入文本的示例程序。
<!DOCTYPE html> <html> <head> </head> <body> <p>DLF stands for</p><p style="text-decoration:underline;">Delhi Land and Finance. </p> <p> Delhi Land and Finance is one of the largest commercial real estate developer in India.</p> </body> </html>
示例
我们可以在 HTML 元素内部使用 <ins> 标记。以下是在 HTML 中标记插入文本和删除文本的示例程序。
<!DOCTYPE html> <html> <head> </head> <body> <p>DLF stands for Delhi Land and Finance.</p> <p>Company has changed its name from </p><del>DLF Universal Ltd</del> to<ins>DLF Ltd.</ins> <p>Delhi Land and Finance is one of the largest commercial real estate developer in India.</p> </body> </html>
广告