user

Joseph Morgan

20 Oct 2021

min-height is not working on td or th

HTML & CSS

CSS Question, min-height is not working on td or th tags what should i do? 

td {
	min-height: 50px;
}
th {
	min-height: 50px; 
}

anyone can help please?

Comments

Mohamed Atef

20 Oct 2021

Best Answer

best answer
githubgithubgithub

min-height is not working with td or th, so you need to replace min-height with “height” and it will work like min-height , this is how table style works 

example 

td {
	height: 50px;
}
th {
	height: 50px; 
}

© 2024 Copyrights reserved for web-brackets.com