значения свойства:
#u
1
{
list-style-position
:
outside
;
}
#u1 { list-style-position: outside; }
<!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<
br
/>Hello World!</
>two<
/>To be or not to be?</
>three<
/>Привет Мир!</
"u2"
"u3"
/*JavaScript*/
document.getElementById("u2").style.listStylePosition = "inside";
/*jQuery*/
$(document).ready(function () {
$("#u3").css({ "list-style-position": "inside" });
});