Hi there
Why does this work:
but this doesn't:
This is for HTML like:
so both the ID and the NAME are present.
Why does this work:
a[name="tape_properties__table"] ~ table col:first-of-type { width: 5%; }
but this doesn't:
a#tape_properties__table ~ table col:first-of-type { width: 5%; }
This is for HTML like:
<a name="tape_properties__table" id="tape_properties__table"></a>
<table border="1">
<colgroup>
<col width="20%">
so both the ID and the NAME are present.