En este artículo, mostraremos el texto que no es correcto usando la etiqueta <s> en el documento. Esta etiqueta es similar pero ligeramente diferente de la etiqueta <del>. No se usa para reemplazar o eliminar texto, pero la etiqueta <del> se usa para reemplazar o eliminar el texto.
Sintaxis:
<s> Contents... </s>
Ejemplo 1:
<!DOCTYPE html> <html> <head> <title> How to define text that is no longer correct? </title> <style> body { text-align: center; } .gfg { font-size: 40px; font-weight: bold; color: green; } .geeks { font-size: 25px; font-weight: bold; } p { font-size: 20px; } </style> </head> <body> <div class="gfg"> GeeksforGeeks </div> <div class="geeks"> HTML5: How to define text that is no longer correct? </div> <p> GeeksforGeeks is a <s>computer science</s> portal for geeks </p> </body> </html>
Producción:
Ejemplo 2:
<!DOCTYPE html> <html> <head> <title> How to define text that is no longer correct </title> </head> <body> <p> <s> Present version of HTML is HTML 4.01. </s> </p> <p> Next version of HTML is HTML 5 </p> </body> </html>
Producción:
Navegadores compatibles:
- Google Chrome
- explorador de Internet
- Firefox
- Ópera
- Safari
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA