Master List of Compatible HTML
I'm trying to find some master list of compatible HTML/CSS with Workfront reporting. How far can you go? Can you use javascript potentially? I'm going to leave a list of coding I have found and how I use it, if you have anything to add, please leave it below!
HTML:
<a href:"link here">Click Here</a> (Not particularly useful, you can create a functional link tied to a field using other code. This is just possible to do)
<b></b> (Bold)
<i></i> (Italics)
<strong></strong> (Defined Bold)
<em></em> (Defined Italics)
<div style="element: value;"></div> (Container that can be used to add CSS by adding an inline style element)
<font></font> (Can add style elements to font like color, size)
<p></p> (paragraph)
<br> (line break)
<hr> (line break with a visual line)
CSS:
border: value type color;
border-radius: value; (used to round off border corners)
background: color-value;
padding: value; (adds distance between the content within the border)
text-align: value; (left, center, right)
This is all that I have used so far, I haven't experimented with much else yet as I am still learning these languages. I'm hoping this will be useful for those like me who have not learned how to write script yet, but want to take their reports to the next level



