首頁 >web前端 >html教學 >'HTML Deprecated Tags' 的中文翻譯是'HTML 棄用標籤'

'HTML Deprecated Tags' 的中文翻譯是'HTML 棄用標籤'

WBOY
WBOY轉載
2023-08-30 11:29:02700瀏覽

"HTML Deprecated Tags" 的中文翻译是"HTML 弃用标签"

隨著 HTML5 的引入,HTML4 下的許多標籤已被棄用。這樣,我們也加入了一些屬性到已棄用的屬性清單-

##備用##已棄用。指定小程式#已棄用。指定基本字體#已棄用。指定居中文字text-align#已棄用。指定目錄清單#已棄用。在文件中嵌入應用程式#已棄用。指定文字字體、大小和顏色字體系列、字體大小已被棄用。指定單行輸入欄位#已棄用。指定項目清單#已棄用。指定選單清單
#標籤 說明

</plaintext></td>#已棄用。指定純文字<td></td> <td><pre class="brush:php;toolbar:false"></pre></td> </tr> <tr> <td><s></s></td>#已棄用。指定刪除線文字<td></td>text-decoration<td></td> </tr> <tr> <td><strike></strike></td>#已棄用。指定刪除線文字<td></td>text-decoration<td></td> </tr> <tr> <td><u></u></td>#已棄用。指定下劃線的文字<td></td>text-decoration<td></td> </tr> <tr> <td><xmp></xmp></td>已棄用。指定預先格式化文字<td></td> <td><pre class="brush:php;toolbar:false"></pre></td> </tr> </tbody> </table><p>以上是'HTML Deprecated Tags' 的中文翻譯是'HTML 棄用標籤'的詳細內容。更多資訊請關注PHP中文網其他相關文章!</p></div><div class="nphpQianMsg"><div class="clear"></div></div><div class="nphpQianSheng"><span>陳述:</span><div>本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除</div></div></div><div class="nphpSytBox"><span>上一篇:<a class="dBlack" title="如何限制在HTML表單中的文字區域中輸入的字元數量?" href="https://m.php.cn/zh-tw/faq/599851.html">如何限制在HTML表單中的文字區域中輸入的字元數量?</a></span><span>下一篇:<a class="dBlack" title="如何限制在HTML表單中的文字區域中輸入的字元數量?" href="https://m.php.cn/zh-tw/faq/599861.html">如何限制在HTML表單中的文字區域中輸入的字元數量?</a></span></div><div class="nphpSytBox2"><div class="nphpZbktTitle"><h2>相關文章</h2><em><a href="https://m.php.cn/zh-tw/article.html" class="bBlack"><i>看更多</i><b></b></a></em><div class="clear"></div></div><ins class="adsbygoogle" style="display:block" data-ad-format="fluid" data-ad-layout-key="-6t+ed+2i-1n-4w" data-ad-client="ca-pub-5902227090019525" data-ad-slot="8966999616"></ins><script> (adsbygoogle = window.adsbygoogle || []).push({}); </script><ul class="nphpXgwzList"><li><b></b><a href="https://m.php.cn/zh-tw/faq/348757.html" title="Html小知識總結" class="aBlack">Html小知識總結</a><div class="clear"></div></li><li><b></b><a href="https://m.php.cn/zh-tw/faq/348804.html" title="如何快速學習HTML" class="aBlack">如何快速學習HTML</a><div class="clear"></div></li><li><b></b><a href="https://m.php.cn/zh-tw/faq/348873.html" title="html xhtml xml的區別" class="aBlack">html xhtml xml的區別</a><div class="clear"></div></li><li><b></b><a href="https://m.php.cn/zh-tw/faq/348884.html" title="src與href屬性的差別" class="aBlack">src與href屬性的差別</a><div class="clear"></div></li><li><b></b><a href="https://m.php.cn/zh-tw/faq/348902.html" title="關於HTML5和CSS替換使用" class="aBlack">關於HTML5和CSS替換使用</a><div class="clear"></div></li></ul></div></div><ins class="adsbygoogle" style="display:block" data-ad-format="autorelaxed" data-ad-client="ca-pub-5902227090019525" data-ad-slot="5027754603"></ins><script> (adsbygoogle = window.adsbygoogle || []).push({}); </script><footer><div class="footer"><div class="footertop"><img src="/static/imghwm/logo.png" alt=""><p>公益線上PHP培訓,幫助PHP學習者快速成長!</p></div><div class="footermid"><a href="https://m.php.cn/zh-tw/about/us.html">關於我們</a><a href="https://m.php.cn/zh-tw/about/disclaimer.html">免責聲明</a><a href="https://m.php.cn/zh-tw/update/article_0_1.html">Sitemap</a></div><div class="footerbottom"><p> © php.cn All rights reserved </p></div></div></footer><script>isLogin = 0;</script><script type="text/javascript" src="/static/layui/layui.js"></script><script type="text/javascript" src="/static/js/global.js?4.9.47"></script></div><script src="https://vdse.bdstatic.com//search-video.v1.min.js"></script><link rel='stylesheet' id='_main-css' href='/static/css/viewer.min.css' type='text/css' media='all'/><script type='text/javascript' src='/static/js/viewer.min.js?1'></script><script type='text/javascript' src='/static/js/jquery-viewer.min.js'></script><script>jQuery.fn.wait = function (func, times, interval) { var _times = times || -1, //100次 _interval = interval || 20, //20毫秒每次 _self = this, _selector = this.selector, //选择器 _iIntervalID; //定时器id if( this.length ){ //如果已经获取到了,就直接执行函数 func && func.call(this); } else { _iIntervalID = setInterval(function() { if(!_times) { //是0就退出 clearInterval(_iIntervalID); } _times <= 0 || _times--; //如果是正数就 -- _self = $(_selector); //再次选择 if( _self.length ) { //判断是否取到 func && func.call(_self); clearInterval(_iIntervalID); } }, _interval); } return this; } $("table.syntaxhighlighter").wait(function() { $('table.syntaxhighlighter').append("<p class='cnblogs_code_footer'><span class='cnblogs_code_footer_icon'></span></p>"); }); $(document).on("click", ".cnblogs_code_footer",function(){ $(this).parents('table.syntaxhighlighter').css('display','inline-table');$(this).hide(); }); $('.nphpQianCont').viewer({navbar:true,title:false,toolbar:false,movable:false,viewed:function(){$('img').click(function(){$('.viewer-close').trigger('click');});}}); </script></body></html>