The Width Attribute On The Table Element Is Obsolete
Có thể bạn quan tâm
30 Amazing Days of HTML and CSS Learning Learn HTML & CSS and start creating your own websites within 30 days With HTML 4, you can specify the width of a table using the width attribute, e.g.: <table width="50%"> to specify the table should occupy 50% of the page width. However, with HTML5 specifying a table's width by that method has been deprecated. E.g., if you check your HTML code for adherence to the HTML 5 standard with the Nu Html Checker provided by the World Wide Web Consortium, you will see an error similar to the following one displayed if you are using "width=" within a table tag.
Error The width attribute on the table element is obsolete. Use CSS instead. From line 102, column 1; to line 102, column 68 ow:↩<table class="dlgframe" width="50%" cellpadding="1" cellspacing="0">↩<tr>↩
You can achieve the same effect, while making your HTML code HTML 5 compliant, using the Cascading Style Sheets (CSS) code within the table tag:
<table class="dlgframe" style="width: 50%">Or you could include the following style section in the HEAD section of the HTML code for the webpage, if all tables with a class of "dlgframe" on the page should occupy 50% of the webpage's width:
<style type="text/css"> .dlgframe { width: 50% } </style>Related articles:
- Align attribute is obsolete
- Valign attribute is obsolete
- Equivalent for cellpadding in CSS
Created: Saturday July 16, 2017Last modified: Sunday July 16, 2017 9:00 PM
Từ khóa » Html Col Width Deprecated
-
Stop Using To Set Table Width In HTML: Here's Why »
-
Is There Any Alternative To Colgroup Col Width Attribute Now It Has ...
-
Deprecated Width Attribute In Columns HTML Example - BitDegree
-
: The Table Column Element - HTML - MDN Web Docs - Mozilla -
: The Table Column Group Element - MDN Web Docs -
The “width” Attribute On The Table (or Td) Element Is Obsolete. Use ...
-
HTML/Table Tags/width And Height Of A Cell - TAG Index
-
HTML:
Tag - TechOnTheNet -
Setting Column Widths In A Heritage Coach (deprecated) - IBM
-
Deprecated HTML Attributes - W3docs
-
Deprecated: Table - IBM
-
HTML Th Width Attribute - W3Schools
-
HTML And CSS Tutorial: How-To's And Miscellaneous
-
How To Set HTML Table Width And Height