html有一组不同的标签,用于使用构建的网页更具吸引力,并且必须满足用户定义的要求。每个版本的 html 都有一组不同的应使用的功能,其中一些功能已从旧版本到新版本弃用。同样的事情<罢工>是 html 中的标签之一,它通过 html 网页中的删除线文本指定。现在,该标签已被弃用;现在使用标签代替 html 中的标签。主要在html5中,这个标签不能用;相反,它支持 、,否则它将在文档中使用 CSS 样式。
语法:
strike 标签具有以下语法,将在 html 网页中使用。
<html> <body> <strike>--content--</strike> </body> </html>
以上代码是基本语法;它将使用 中的用户内容。网页中的标签。它还将使用 HTML 中的全局属性,并且还使用事件属性。在 HTML 中, 始终是标签成对出现,并且应用相同的一般规则,始终以开头。并关闭罢工>必须使用标签。
下面给出的是 HTML Strike 标签的示例。
Code:
<html> <body> <p>Welcome <strike>To My Domain</strike> Thanks</p> </body> </html>
Output:
Code:
<html> <head> <style> .sample{ color:blue; } body { text-align:center; } </style> </head> <body> <div class="sample"> <strike>Welcome</strike> <strike>To My Domain</strike> </div> </body> </html>
Output:
Code:
<html> <head> <style> .sample{ color:red; } body { text-align:center; } </style> </head> <body> <div class="sample"> <ol> <li>Apples</li> <li><del>Mangoes</del></li> <li><del>Strawberry</del></li> </ol> </div> </body> </html><strong> </strong>
Output:
The above examples show the tag usages in HTML documents. We see the first example will use the tag in html document in that mentioned contents will be deprecated in the web page same second example we will use some CSS styles applied in the web pages based on that it will be displayed in the web page views on the user screen the final example we use the tag in the document instead of tag same purpose the mentioned contents or text will be removed in the web page. The Same tag will be worked on some other frameworks like bootstrap and jquery libraries also; it will be used in the ionic Angular frameworks etc.
Based on the above concepts, the surface of the HTML tag will be easy to see how versatile it is in web page users. It will take full advantage of the understanding of CSS frameworks, and also it will work with jquery, Angular but the purpose will be different for each technologies.
以上是HTML 罢工标签的详细内容。更多信息请关注PHP中文网其他相关文章!