Using Text-align Center In Colgroup - Html - Stack Overflow
Có thể bạn quan tâm
-
- Home
- Questions
- Tags
- Users
- Companies
- Labs
- Jobs
- Discussions
- Collectives
-
Communities for your favorite technologies. Explore all Collectives
- Teams
Ask questions, find answers and collaborate at work with Stack Overflow for Teams.
Try Teams for free Explore Teams - Teams
-
Ask questions, find answers and collaborate at work with Stack Overflow for Teams. Explore Teams
Collectives™ on Stack Overflow
Find centralized, trusted content and collaborate around the technologies you use most.
Learn more about CollectivesTeams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Learn more about TeamsGet early access and see previews of new features.
Learn more about Labs Using text-align center in colgroup Ask Question Asked 15 years, 4 months ago Modified 1 year, 9 months ago Viewed 44k times 75I have a table in my page. I use colgroups to format all cells in this column the same way. It works well for background color and all. but I cannot seem to figure out why text-align center does not work. It does not align the text centered.
Example:
<table id="myTable" cellspacing="5"> <colgroup id="names"></colgroup> <colgroup id="col20" class="datacol"></colgroup> <colgroup id="col19" class="datacol"></colgroup> <colgroup id="col18" class="datacol"></colgroup> <thead> <th> </th> <th>20</th> <th>19</th> <th>18</th> </thead> <tbody> <tr> <td> </td> <td> </td> <td> </td> <td> </td> </tr> </tbody> </table>CSS:
#names { width: 200px; } #myTable .datacol { text-align: center; background-color: red; } Share Improve this question Follow edited Mar 12, 2023 at 18:42 Peter Mortensen 31.6k22 gold badges109 silver badges133 bronze badges asked Aug 6, 2009 at 10:31 SanderSander 13.4k15 gold badges73 silver badges98 bronze badges Add a comment |4 Answers
Sorted by: Reset to default Highest score (default) Trending (recent votes count more) Date modified (newest first) Date created (oldest first) 123Only a limited set of CSS properties applies to columns, and text-align isn't one of them.
See "The mystery of why only four properties apply to table columns" for a description of why this is the case.
In your simple example, the easiest way to fix it would be to add these rules:
#myTable tbody td { text-align: center } #myTable tbody td:first-child { text-align: left }That would center all table cells, except the first column. This doesn't work in IE6, but in IE6 the text-align does actually (wrongly) work on the column. I don't know if IE6 supports all properties, or just a larger subset.
Oh, and your HTML is invalid. <thead> misses a <tr>.
Share Improve this answer Follow edited Mar 12, 2023 at 18:29 Peter Mortensen 31.6k22 gold badges109 silver badges133 bronze badges answered Aug 6, 2009 at 10:43 mercatormercator 28.6k8 gold badges65 silver badges74 bronze badges 6- so you are saying it just is not possible and he only way to achieve this would be to do it on the TD element itself then – Sander Commented Aug 6, 2009 at 12:02
- Yep. I've added a fix for your example, though that's not going to work if the table gets any more complicated. DisgruntledGoat provides a few more solutions. – mercator Commented Aug 6, 2009 at 13:07
- Both of those suggestions regarding the missing tr inside thead are invalid, too. th doesn't belong in tbody and td doesn't belong in thead. Just add a tr to contain the th's inside thead. – graywh Commented Nov 12, 2010 at 15:18
- @graywh, I agree it's best to keep the th in the thead, so I've removed my suggestions. It's perfectly valid, and may be appropriate, to have a th in the tbody or a td in the thead, though. E.g. a header column can't go in the thead, and descriptions of headers could go in tds in the thead. But neither is probably the case here. – mercator Commented Nov 13, 2010 at 2:15
- @wtjones, that's because IE quirks mode (in any version of IE) is essentially the same as IE5.5 (so don't use it!). If you have no choice, you can make it work in quirks mode the same way as in IE6 (i.e. by setting text-align on the col/colgroup anyway). – mercator Commented Dec 21, 2011 at 13:13
See a similar question: Why is styling table columns not allowed?
You are only allowed to set border, background, width and visibility properties, due to the fact that cells aren't direct descendents of columns, only of rows.
There are a few solutions. The simplest is to add a class to each cell in the column. Unfortunately that means more HTML, but it shouldn't bee a problem if you're generating tables from a database, etc.
Another solution for modern browsers (i.e., not Internet Explorer 6) is to use some pseudo classes. tr > td:first-child will select the first cell in a row. Opera, Safari, Chrome and Firefox 3.5 also support the :nth-child(n) selector so you can target specific columns.
You could also use td+td to select from the second column onwards (it actually means "select all td elements that have one td element to its left). td+td+td selects from the third column - you can continue in this fashion, overriding properties. Honestly though, it's not great code.
Share Improve this answer Follow edited Mar 12, 2023 at 18:32 Peter Mortensen 31.6k22 gold badges109 silver badges133 bronze badges answered Aug 6, 2009 at 11:11 DisgruntledGoatDisgruntledGoat 72.4k70 gold badges212 silver badges291 bronze badges Add a comment | 6With the following CSS, you can just append one or more classes to the the table element in order to align its columns accordingly.
CSS
.col1-right td:nth-child(1) {text-align: right} .col2-right td:nth-child(2) {text-align: right} .col3-right td:nth-child(3) {text-align: right}HTML
<table class="col2-right col3-right"> <tr> <td>Column 1 will be left</td> <td>Column 2 will be right</td> <td>Column 2 will be right</td> </tr> </table>Example: http://jsfiddle.net/HHZsw/
Share Improve this answer Follow edited Mar 12, 2023 at 18:34 Peter Mortensen 31.6k22 gold badges109 silver badges133 bronze badges answered Aug 14, 2013 at 12:56 FredFred 12.7k7 gold badges64 silver badges88 bronze badges 1- true, though small remark: those selectors are CSS3 selectors, and usable in IE9 and higher. If you need support for lower versions of IE, you cannot use this method. – Sander Commented Aug 14, 2013 at 13:02
In addition to the limitations mentioned in other answers, as of February 2018, visibility:collapse still does not work on colgroups in Chrome and Chromium based browsers, due to a bug. See CSS col visibility:collapse does not work on Chrome.
So I believe the currently usable properties are just border, background, and width (unless you employ some sort of polyfill for Chrome and other Chromium-based browsers). The bug can be tracked at Issue 174167: visibility:collapse does not work correctly for table columns or rows.
Share Improve this answer Follow edited Mar 12, 2023 at 18:40 Peter Mortensen 31.6k22 gold badges109 silver badges133 bronze badges answered Feb 22, 2018 at 23:13 Jacob C.Jacob C. 3641 silver badge16 bronze badges Add a comment |Your Answer
Reminder: Answers generated by artificial intelligence tools are not allowed on Stack Overflow. Learn more
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Draft saved Draft discardedSign up or log in
Sign up using Google Sign up using Email and Password SubmitPost as a guest
Name EmailRequired, but never shown
Post Your Answer DiscardBy clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.
Not the answer you're looking for? Browse other questions tagged
or ask your own question.- The Overflow Blog
- Why do developers love clean code but hate writing documentation?
- This developer tool is 40 years old: can it be improved?
- Featured on Meta
- The December 2024 Community Asks Sprint has been moved to March 2025 (and...
- Stack Overflow Jobs is expanding to more countries
Linked
13 Why text-align doesn't work in colgroup? 0 Is text-align not possible for <col> tag? <col> represents the group of column in <colgroup> 74 Better way to right align text in an HTML table 20 Why is styling table columns not allowed? 9 CSS col visibility:collapse does not work on Chrome 4 How to horizontally align columns in a table 3 Aligning text in table column group in HTML5 4 Specifying the width and text alignment of a column 1 html table with column in monospace font 1 w3c's colgroup example invalid? See more linked questionsRelated
36 Center text in table cell 63 Center-align a HTML table 8 How to center XHTML (and/or HTML4) TABLE columns by colgroup? 62 Center align with table-cell 1 Center the text in a row of an HTML table 0 Centering a column in a table 1 Center Text in Table column 3 Aligning text in table column group in HTML5 1 Center text in an HTML table across group of cells 1 CSS Styling - Can't centre text in a tableHot Network Questions
- What should I do if I am being guided to walk in circles?
- A prime number in a sequence with number 1001
- Can a ship like Starship roll during re-entry?
- How was fraud by false representation charged in this case?
- Trying to find three successive triangular numbers whose sum is a perfect square.
- How to Speed Up the Summation of a Sequence?
- Have I Found a New Refutation of the Kalam Cosmological Argument, or Am I Missing Something?
- why would a search warrant say that the items to search for were the following: hair, fibers, clothing, rope wire, and binding material?
- How much is this coin in "Mad Men" worth?
- An extension of Lehmer's conjecture on Ramanujan's tau function
- Is it possible to symbolically solve this polynomial system of equations and inequalities with Mathematica?
- Physically/fundamentally/literally, why does a significant voltage not develop across a diode in forward bias?
- C++ code reading from a text file, storing value in int, and outputting properly rounded float
- What are "rent and waistline parties"?
- I have multiple scenes in one file. How do I change their order in scene-browser?
- What do "messy" weapons do, exactly?
- Why were my lead-acid batteries destroyed after operating them in parallel?
- What network am I connected to and what is Air OS?
- Concatenating column vectors in a loop
- Is it important that my dishwasher's cabinet seals make contact with the opening?
- Why is my LED burning out?
- Dative in front of accusative
- Is it damaging to have a Withdraw on a continuing education transcript when applying to PhD program?
- What's an Unethical Drug to Limit Anger in a Dystopic Setting
To subscribe to this RSS feed, copy and paste this URL into your RSS reader.
lang-htmlTừ khóa » Html Col Align Center
-
How To Center Align Text In Table Cells In HTML? - Tutorialspoint
-
HTML |
Align Attribute - GeeksforGeeks -
CSS Table Alignment - W3Schools
-
HTML Col Tag - W3Schools
-
Grid System - Bootstrap
-
Columns · Bootstrap V5.0
-
Align Center In Bootstrap Column Code Example - Code Grepper
-
Bootstrap 4 Col Align Center Code Example
-
» - HTML">
» - HTML How To Center A Column In Bootstrap - Tutorial Republic
: The Table Column Element - HTML - MDN Web Docs - Mozilla Bootstrap Center (horizontal Align)
Bootstrap 4 Vertical Center. How To Vertically Align Anything - Medium
Advanced Table Settings: Column Width, Alignment And Merging Cells
Copyright © 2022 | Thiết Kế Truyền Hình Cáp Sông Thu