I've been facing such a challenge for the first time. I have a table with simple tags and text inside. What I want to do is to give ALL first lines of tag font weight bold. I came up with a solution td::ntf-line(-n+2)
(where 2 is a number of lines) but it didn't work. Did anyone face the same thing before? Thanks in advance. Example of a code:
<tr>
<td>10:30 AM</td>
<td rowspan="2" class="web">Web Design<br> Fundamentals<br>MULT1083<br>B.Ryan / A3102</td>
<td rowspan="4" class="networks">Introduction to<br> Networks<br>NCRC1157<br>F.Bekkering<br>A-3102</td>
<td rowspan="4" class="hardwareLab">Introduction to<br> Hardware<br>LAB<br>CEIO1048<br>C.Pieroni<br>A3012</td>
<td rowspan="4" class="microsoftLab">Microsoft Client OS<br>LAB<br>OSSE1060<br>J.Jakson<br>A-3105</td>
</tr>
so I want to make Web Design<br> Fundamentals
font weight bold as well as for all others . Only CSS solutions please, as all of you I'm too lazy to write <b>
tag everywhere