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中文網其他相關文章!