Final answer:
To apply rules to tags with an alt starting with 'sometimes', use CSS attribute selection.
Step-by-step explanation:
To apply the below rules to all tags with an alt beginning with "sometimes", you can use attribute selection in CSS. The attribute selector that starts with 'sometimes' and matches any tag with an attribute 'alt' can be written as '[alt^=sometimes]'.
For example, if you want to apply a specific style to all image tags with alt attribute starting with 'sometimes', you can use the CSS rule 'img[alt^=sometimes]'. This will select all image tags where the alt attribute begins with 'sometimes'.