I am struggling with adjusting the width of a specific div in my HTML code:
<div class="wall" >
<table>
<tr>
<div class="tbr01"><th>Content</th></div>
<div class="tbr02"><th>User</th></div>
<div class="tbr03"><th>Published</th></div>
</tr>
</table>
</div>
I have attempted to adjust the width of div.tbr01 using CSS, but it doesn't seem to be working. Can someone help me figure out what I'm doing wrong?
div.wall table tr div.tbr01 th {
width: 100px;
}
Thank you, Thijs