значения свойства:
#u
1
{
list-style
:
circle
;
}
#u1 { list-style: circle; }
<!DOCTYPE html>
<
html
>
head
meta
charset
=
"utf-8"
/>
title
>New Page</
link
href
"css/style.css"
rel
"stylesheet"
script
type
"text/javascript"
src
"https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"
></
</
body
ul
id
"u1"
li
>one</
>two</
>three</
"u2"
"u3"
/*JavaScript*/
document.getElementById("u2").style.listStyle = "square inside";
/*jQuery*/
$(document).ready(function () {
$("#u3").css({ "list-style": "upper-roman" });
});