In the structure of my code, I have a WYSIWYG editor enclosed in a table within a div element:
<div class="mydiv">
<li>
<table>My WYSIWYG</table>
</li>
</table>
Within the WYSIWYG editor itself, there are multiple tables present. However, I am specifically trying to style only the first table without assigning it a class directly.
I have attempted to apply the following CSS rule to target the first table within the structure, but unfortunately, it doesn't seem to be effective:
.mydiv li + table {width:100%;}