I should preface I'm unfamiliar with CSS and HTML but I'm definitely getting better having worked on this sheet for the last couple weeks. So I have several roll buttons for skills that I want to have the button be the skill name. That's no problem, but now I have a lot of CSS entries, one for each button with the content being the skill name. .charsheet button[type=roll].sheet-athletics::before { font-family: "Arial"; content: "Athletics"; } Etc, repeated for each skill. Is there anyway I can trim that all down or do I need to do that for each one? Also how do I get rid of the roll button border? .charsheet button[type=roll]::before {
border: none;
} This isn't doing it, nor is 0px instead of none, nor is placing it directly in the specific roll button CSS rather than a general one.