im guessing not cause i've been trying it with examples and nthing works...
but im curious why not? and how im gonna set it ?
thnx!
im guessing not cause i've been trying it with examples and nthing works...
but im curious why not? and how im gonna set it ?
thnx!
Sure you can. Just as for any other HTML element.
ul li { font-family: Arial, Sans-Serif }
Note that if the li
contains other elements, and those elements have their own font-family settings, the value may get overridden. In that case, you'll have to specifically target the elements inside the li, e.g. for links:
ul li a { font-family: Arial, Sans-Serif }