1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<!DOCTYPE html> <style> fieldset::first-letter { color: red; } fieldset.f::first-letter { color: green; } </style> <fieldset>Text</fieldset> <script> window.onload = function() { document.querySelector('fieldset').classList.add('f'); } </script>