Seeking a way to dynamically modify CSS attributes via a database field. Rather than using multiple if statements like the one below:
if (@Model["font"] == "arial")
//set the font to arial
I'd like a cleaner solution that doesn't clutter my views. Any suggestions would be greatly appreciated.