HTML | Width Attribute - GeeksforGeeks

Skip to content geeksforgeeks
  • Courses
    • DSA Courses
    • Programming Languages
  • Tutorials
    • Python Tutorial
      • Python Loops and Control Flow
    • Java
      • Java Interview Questions
      • Java Quiz
      • Advance Java
    • Programming Languages
    • System Design
    • Interview Corner
    • Computer Science Subjects
    • DevOps
    • Linux
    • Software Testing
    • Databases
    • Android
    • Excel
    • Mathematics
  • DSA
    • Data Structures
    • Algorithms
      • Analysis of Algorithms
      • Searching Algorithms
      • Sorting Algorithms
    • Practice
      • Company Wise Coding Practice
      • Practice Problems Difficulty Wise
      • Language Wise Coding Practice
      • Curated DSA Lists
    • Company Wise SDE Sheets
    • DSA Cheat Sheets
    • Puzzles
  • Data Science
    • Data Science Packages
    • Data Visualization
    • Data Analysis
  • Web Tech
    • Web Development Using Python
      • Django
      • Flask
    • Cheat Sheets
  • HTML Tutorial
  • HTML Exercises
  • HTML Tags
  • HTML Attributes
  • Global Attributes
  • Event Attributes
  • HTML Interview Questions
  • HTML DOM
  • DOM Audio/Video
  • HTML 5
  • HTML Examples
  • Color Picker
  • A to Z Guide
  • HTML Formatter
Open In App HTML <th> width Attribute Last Updated : 16 Sep, 2024 Summarize Comments Improve Suggest changes Like Article Like Save Share Report Follow

The HTML <th> width Attribute is used to specify the width of a table header cell. If the width attribute is not set then it takes the default width according to the content.

Syntax:

<th width="pixels | %">

Attribute Values:

Attributes values

Description

pixels

It sets the width of the table header cell in terms of pixels.

%

It sets the width of the table header cell in terms of percentage (%).

Example: In this example the <th> width attribute in this HTML example specifies the width of each table header cell in percentages. It adjusts the columns’ widths to 50%, 20%, and 30% of the table’s width.

HTML <!DOCTYPE html> <html> <head> <title> HTML th width Attribute </title> </head> <body> <h1>GeeksforGeeks</h1> <h2>HTML th width Attribute</h2> <table border="1" width="500"> <tr> <th width="50%">NAME</th> <th width="20%">AGE</th> <th width="30%">BRANCH</th> </tr> <tr> <td>BITTU</td> <td>22</td> <td>CSE</td> </tr> <tr> <td>RAKESH</td> <td>25</td> <td>EC</td> </tr> </table> </body> </html>

Output:

Example: In this example we use the <th> width attribute to set specific widths for table headers: 100 pixels for “Header 1” and 200 pixels for “Header 2,” with “Header 3” taking the remaining space.

HTML <!DOCTYPE html> <html> <head> <title>Table with th Width Attribute</title> <style> body{ display:flex; justify-content:center; align-items:center; flex-direction:column; } </style> </head> <body> <h1 style="color: green;">GeeksforGeeks</h1> <table border="1"> <tr> <th width="100">Header 1</th> <th width="200">Header 2</th> <th>Header 3</th> </tr> <tr> <td>Data 1</td> <td>Data 2</td> <td>Data 3</td> </tr> </table> </body> </html>

Output:

Screenshot-2023-12-18-173919

Output

HTML <th> width Attribute – FAQs

Does the <th> width attribute affect the entire column?

Yes, setting the width on a <th> typically affects the corresponding column’s width throughout the table.

What units can be used with the <th> width attribute?

The <th> width attribute accepts units like pixels (px) and percentages (%), but using CSS is preferred.

How does the <th> width attribute behave in different browsers?

The width attribute is deprecated but still generally supported for backward compatibility, though CSS offers more consistent control.

Can I set different widths for multiple <th> elements?

Yes, each <th> can have a unique width attribute value, but it’s better to use CSS for uniformity.

Can I use percentages in the <th> width attribute?

Yes, you can specify widths in percentages (e.g., width=”50%”), making columns responsive to table size.

Why is the <th> width attribute not recommended?

It’s deprecated in HTML5, and using CSS provides better control and styling consistency across different browsers.

author jit_t Follow Improve Previous Article HTML | <td> char Attribute Next Article

Similar Reads

HTML width/height Attribute vs CSS width/height Property In HTML 5, few elements follow the width and height attributes and maximum elements do not follow this attribute. Like img, iframe, canvas, and svg kind of elements follow the width and height attributes but div, span, article and section type of elements don't follow them.The width and height attributes are affected in img, svg tags, those are wea 3 min read Difference Between css(‘width’) and width() methods In jQuery In jQuery, we have two ways to change the width of any HTML element. The jQuery css() method and width() method, below both the methods are described properly with the example. jQuery CSS('width') Method: It is a method present in jQuery which is used to get or set the property on the matched element. It is a property used to get or set the width o 3 min read How to add Background-Color for Text Width Instead of Entire Element Width using CSS ? In this article, we will see how to add background color for the text width instead of the entire element width using CSS. The display: inline or display: inline-block property is used to set the background color of the text width. Syntax: display: inline; display: inline-block; Approach: We will create an element and then apply the display: inline 2 min read How to make a grid with two columns where 1st column has 20% of width and 2nd one 80% width in Tailwind CSS ? Tailwind CSS simplifies the process of making complex UI designs. It has a lot of predefined styles in form of classes, which can be applied to any HTML element in the code. Also, one advantage of Tailwind CSS is that during the production build, it analyzes the HTML components, and removes any unused CSS, hence decreasing the overall size of the C 4 min read What is the difference between 'width: 100%' and 'width: 100vw' in CSS ? The CSS width Property is used to set the width of the text and images. The width can be assigned to the text and images in the form of pixels(px), percentages (%), centimeters (cm), etc. The width: 100% sets an element's width relative to its containing block, making it responsive within its parent. The width: 100% responds to the container's size 1 min read HTML | <iframe> width Attribute The HTML <iframe> width attribute is used to specify the width of the <iframe> in terms of pixels. Syntax: <iframe width="pixels"> Attribute Values: It contains single value pixel which specifies the width of the iframes in terms of pixels. Below example illustrates the use of <iframe> width attribute in HTML: Example: C/C++ 1 min read HTML <canvas> width Attribute The HTML <canvas> width Attribute is used to specify the width of the <canvas> in terms of pixels. Syntax: <canvas width="pixels"> Attribute Values: It contains the value i.e pixels which specify the width of the canvas in terms of pixel. It has a Default value which is 300. Example: This Example illustrates the use of width attri 1 min read HTML | <input> width Attribute The HTML <input> width Attribute is used to specify the width of the <input> element. This Attribute is only used for input type="image". Syntax: <input width="pixels"> Attribute Values: It contains the value i.e pixels which specify the width of the input Element. Example: C/C++ Code <!DOCTYPE html> <html> <body st 1 min read HTML | <hr> width Attribute The HTML <hr> width attribute is used to specify the width of the horizontal line in terms of pixels or percent. Syntax: <hr width="pixels|%"> Attribute Values: pixels: It sets the width of <hr> attribute in terms of pixels. %: It sets the width of <hr> attribute in terms of percentage (%). Note: The <hr> width attribu 1 min read HTML | <col> width Attribute The HTML <col> width Attribute is used to specify the width of <col> element. It sets the fixed width of column element. In general, the width of <col> element is the width needed to display its content. Syntax: <col width="pixels | % | relative_length"> Attribute Values: pixels: It sets the width of <col> attribute in 1 min read HTML | <col> width Attribute The HTML <col> width Attribute is used to specify the width of a column element. If width attribute is not set then it takes default width according to content. It is not supported by HTML 5. Syntax: <col width="pixels | % | relative_length"> Attribute Values: pixels: It sets the width of table in terms of pixels. %: It sets the width o 1 min read HTML | <pre> width Attribute The HTML <pre> width Attribute is used to specify the maximum number of characters per line. Note: The width Attribute is not supported by HTML5 Syntax: <pre width="number"> Attribute Values: number: It is used to set the maximum number of characters. Example: <!DOCTYPE html> <html> <head> <title> HTML pre width 1 min read HTML | <embed> width Attribute The HTML embed width attribute is used to specify the width of the embedded content. Syntax: <embed width="pixels"> Attribute Values: pixels: The width of embed value are set in terms of pixels. It is used to specify the width of embedded content. Example: C/C++ Code &lt;!DOCTYPE html&gt; &lt;html&gt; &lt;head&gt; 1 min read HTML | Marquee width attribute The Marquee width attribute in HTML is used to set the width of marquee in pixels or percentage value.Note: This attribute is not supported by HTML5. Syntax: <marquee width="px/%" > Attribute value: px: Define the width value of marquee.%: Define the width value of marquee. Example: C/C++ Code <!DOCTYPE html> <html> <head> 1 min read HTML | applet width Attribute The HTML applet width attribute is used to specify the width of an <applet> element. Note: This attribute is not supported by HTML5. Syntax: <applet width="pixels"> Attribute Values: pixels: It contains the pixels value that specifies the width of the applet element. Example: <!DOCTYPE html> <html> <head> <title> 1 min read How to use image height and width attribute in HTML Page ? HTML stands for HyperText Markup Language. Hypertext defines the link between the online pages. It is used to define the text document within tag which defines the structure of websites. This language is used to annotate text in order that a machine can know it and manipulate text accordingly. Most markup languages (e.g. HTML) are human-readable. T 3 min read HTML <object> width Attribute The HTML <object> width attribute is used to specify the horizontal dimension of the embedded object, defining the width of the displayed content within the webpage. Syntax: <object width="pixels">Attribute Values: pixels: It holds the width of the object in terms of pixels.The below example illustrates the <object> width attribut 1 min read HTML <img> width Attribute Width attribute in HTML <img> tags specifies the width of the image element in pixels or as a percentage of its containing element's width, controlling its visual size on the webpage. Syntax: <img width="pixels">Attribute Values: They contain single value pixels which specify the width of the image in pixels.  HTML <img> Width Att 1 min read HTML <video> width Attribute HTML <video> width Attribute is used to specify the width of the video display area in pixels of its container element's width. Note: Always specify the width and the height of the video else the web page will be confused about how much space that video will require due to that reason web page slows down. Syntax:  <video width="pixels"> 1 min read HTML <colgroup> width Attribute The HTML <colgroup> width Attribute is used to specify the width of the colgroup element. The <colgroup> attribute sets a predefined width of the column group. Syntax<colgroup width="pixels|%|relative_lngth">Attribute ValuesValue Description pixels It specify the width of the colgroup in terms of pixels. % It specify the width of 1 min read HTML <td> width Attribute The HTML <td> width attribute was traditionally used to specify the width of a table cell. If this attribute is not set, the cell automatically adjusts its width based on the content it contains. This attribute provides flexibility as it accepts values in both pixels and percentages, allowing developers to control the layout and responsivenes 3 min read HTML <table> width Attribute The HTML <table> element's width attribute specifies the width of the table. It can accept values in pixels or percentages. However, in HTML5, it is recommended to control table width using CSS instead. Syntax<table width="pixels | %">Attribute Valuespixels: It sets the width of the table in terms of pixels.%: It sets the width of the t 2 min read SVG stroke-width Attribute The stroke-width attribute is an attribute defining the width of the stroke applied to the shape. Syntax: stroke-width="length" Attribute Values: length: Length at which we want to set the stroke-width attributepercentage: Percentage at which we want to set the stroke-width attribute We will use the stroke-width attribute for setting the width of t 1 min read HTML5 MathML width Attribute This attribute is used to set the width or increase/decrease the width of the content. This attribute is accepted by <mglyph>, <mpadded>, <mspace>, and <mtable> tags. Syntax: <element width="length"> Attribute Values: length: Holds the digit in specific unit, that much width will be define. Below example illustrate the 1 min read SVG width Attribute The width attribute defines the horizontal length of an element. Syntax: width= "width"Attribute Values: length: Length at which we want to set the width attribute.percentage: Percentage at which we want to set the width attribute.We will use the width attribute for setting the width of the element. Example 1: In this example we will use the width 1 min read How href attribute is different from src attribute in HTML ? In HTML5, the href and src attributes play distinct roles in defining paths or URLs, each associated with specific HTML elements. The href attribute, commonly found in an anchor (<a>) elements, points to the destination of hyperlinks, facilitating navigation. The src attribute, used with elements like <img> and <script>, specifies 1 min read When to use the class attribute and the id attribute ? The class attribute is used when multiple HTML elements share a common style or behaviour, allowing the application of a shared style to several elements. It promotes code reusability and is suitable for elements with similar characteristics. The id attribute is utilized when a unique identifier is needed for a specific HTML element. This identifie 1 min read How to use the target attribute and the rel attribute in the <a> Tag ? The target and rel attributes in the <a> (anchor) tag is used to control the behaviour of hyperlinks, specifying how the linked content should be opened and establishing relationships between the current and linked documents. Here's how to use these attributes: target Attribute:The target attribute determines where the linked content will be 2 min read HTML DOM Screen width Property The Screen width property is used for returning the total width of a user's screen. It returns the total width of the screen in pixels. Syntax: screen.widthReturn Value: A Number, representing the total width of the user's screen, in pixels Below program illustrates the Screen width Property : Checking the total width of a user's screen. C/C++ Code 1 min read HTML | DOM Style width Property The Style width property in HTML DOM is used to set or return the width of an element which can be block-level elements or elements with fixed position. Syntax: It is used to return the width property:object.style.widthIt is used to set the width property:object.style.width = "auto|length|%|initial|inherit" Property Value Description auto-This valu 2 min read Article Tags :
  • HTML
  • Web Technologies
  • HTML-Attributes
Like three90RightbarBannerImg Explore More We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our Cookie Policy & Privacy Policy Got It ! Lightbox Improvement Suggest changes Suggest Changes Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal. geeksforgeeks-suggest-icon Create Improvement Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all. geeksforgeeks-improvement-icon Suggest Changes min 4 words, max CharLimit:2000

What kind of Experience do you want to share?

Interview Experiences Admission Experiences Career Journeys Work Experiences Campus Experiences Competitive Exam Experiences

Từ khóa » Html Table Th Column Width