Click here to Skip to main content
15,886,708 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: The namespace attribute cannot have empty string as its value(WebService ASP.NETC#) Pin
Sandeep Mewara11-Jun-12 23:14
mveSandeep Mewara11-Jun-12 23:14 
Questionbeginner URL rewrite question Pin
Jassim Rahma10-Jun-12 4:54
Jassim Rahma10-Jun-12 4:54 
AnswerRe: beginner URL rewrite question Pin
Sandeep Mewara11-Jun-12 23:10
mveSandeep Mewara11-Jun-12 23:10 
SuggestionRe: beginner URL rewrite question Pin
Naveen_1439-Aug-12 20:10
Naveen_1439-Aug-12 20:10 
Questioncrystal tool problem Pin
gopalmahadak9-Jun-12 17:38
gopalmahadak9-Jun-12 17:38 
AnswerRe: crystal tool problem Pin
Sandeep Mewara9-Jun-12 20:07
mveSandeep Mewara9-Jun-12 20:07 
QuestionDifferent text-align for columns in a table Pin
M-Badger8-Jun-12 10:35
M-Badger8-Jun-12 10:35 
AnswerRe: Different text-align for columns in a table Pin
User 17164928-Jun-12 11:34
professionalUser 17164928-Jun-12 11:34 
Assuming that the browser you are aiming your webpage(s) at can handle CSS3, then the CSS3 tag :nth-child(N) may help

Try this ... it should only apply the CSS to the second and subsequent TD and TH tags after the first TD and TH tag.

CSS
#content table tr td:nth-child(n+2), #content table th:nth-child(n+2) {
    /* fix standard cell settings in tables */
	padding: 2px;
	border: 1px solid #000;
	margin-bottom: 3px;
	text-align: center;
    background: #383838;
}


This is how that pseudo-class works http://reference.sitepoint.com/css/understandingnthchildexpressions[^]

Let us know how (or if) it works for you.

modified 1-Aug-19 21:02pm.

GeneralRe: Different text-align for columns in a table Pin
M-Badger8-Jun-12 12:45
M-Badger8-Jun-12 12:45 
GeneralRe: Different text-align for columns in a table Pin
M-Badger8-Jun-12 12:52
M-Badger8-Jun-12 12:52 
GeneralRe: Different text-align for columns in a table Pin
User 17164928-Jun-12 13:27
professionalUser 17164928-Jun-12 13:27 
AnswerRe: Different text-align for columns in a table Pin
vvashishta18-Jun-12 20:36
vvashishta18-Jun-12 20:36 
Questionwhat are hidden links?? Pin
johnkennedy14-Jun-12 2:49
johnkennedy14-Jun-12 2:49 
AnswerRe: what are hidden links?? Pin
jfriedman4-Jun-12 2:56
jfriedman4-Jun-12 2:56 
AnswerRe: what are hidden links?? Pin
mccurdy4-Jun-12 21:41
mccurdy4-Jun-12 21:41 
AnswerRe: what are hidden links?? Pin
Gerben Jongerius6-Jun-12 22:36
Gerben Jongerius6-Jun-12 22:36 
AnswerRe: what are hidden links?? Pin
vvashishta18-Jun-12 20:38
vvashishta18-Jun-12 20:38 
QuestionForm using AJAX / jQuery to set session with dropdown menu Pin
cde1113-Jun-12 11:28
cde1113-Jun-12 11:28 
Questionweb site contet most recent view Pin
amanpavanker2-Jun-12 16:37
amanpavanker2-Jun-12 16:37 
QuestionIs aspx still useful face to HTML5 and Javascript? Pin
Bastien Vandamme31-May-12 23:10
Bastien Vandamme31-May-12 23:10 
AnswerRe: Is aspx still useful face to HTML5 and Javascript? Pin
Eddy Vluggen6-Jun-12 22:51
professionalEddy Vluggen6-Jun-12 22:51 
GeneralMessage Closed Pin
29-May-12 16:07
SophiaGreen29-May-12 16:07 
AnswerRe: How to make your support service efficiently? Pin
Eddy Vluggen6-Jun-12 22:49
professionalEddy Vluggen6-Jun-12 22:49 
QuestionExample for a desktop app developed with HTML5 Pin
amit123429-May-12 15:34
amit123429-May-12 15:34 
AnswerRe: Example for a desktop app developed with HTML5 Pin
Eddy Vluggen6-Jun-12 22:52
professionalEddy Vluggen6-Jun-12 22:52 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.