I am trying to hide specifically Last modified date and the date it was modified.
<dt>ID</dt>
<dd>12345</dd>
<dt>Last Modified Date</dt>
<dd>02/04/2021 12:23:11 PM</dd>
<dt>Renew Date</dt>
<dd>01/03/2020</dd>
I am trying to hide specifically Last modified date and the date it was modified.
<dt>ID</dt>
<dd>12345</dd>
<dt>Last Modified Date</dt>
<dd>02/04/2021 12:23:11 PM</dd>
<dt>Renew Date</dt>
<dd>01/03/2020</dd>
If it's always the same position within the parent you can use :nth-child
:
dl dt:nth-child(3) {
display: none;
}
dl dd:nth-child(4) {
display: none;
}
<dl>
<dt>ID</dt>
<dd>12345</dd>
<dt>Last Modified Date</dt>
<dd>02/04/2021 12:23:11 PM</dd>
<dt>Renew Date</dt>
<dd>01/03/2020</dd>
</dl>