Comments on Coding Resources #2 All Comments

For anyone having issues with the background text color, there is a minor mistake in the code that can mess up the following code! They arent closed properly (I assume a copy-paste mistake), you have to change out </div> with </span>


These are the codes im referring to VVVV

purple background, text only background + padding

<span class="p-1" style="background-color:purple">purple text</div>

#AB2E2E text only background + padding

<span class="p-1" style="background-color:#AB2E2E ">#AB2E2E background</div>

rgb(255,160,122) text only background + padding

<span class="p-1" style="background-color:rgb(255,160,122)">rgb(255,160,122) background</div>

rgb(255,160,122) text only background which is 50% opaque + padding

<span class="p-1" style="background-color:rgba(255,160,122,0.5)">rgb(255,160,122,0.5) background</div>