본문 바로가기

inventor

Webview, list

 

<!DOCTYPE html>
<html>
<head>
<style>
ul.a {
  list-style-type: circle;
}

ul.b {
  list-style-type: square;
}

ol.c {
  list-style-type: upper-roman;
}

ol.d {
  list-style-type: lower-alpha;
}
</style>
</head>
<body>

<h2>The list-style-type Property</h2>

<p> lists:</p>
<ul class="a">
  <li>Korean</li>
  <li>English</li>
  <li>Math</li>
</ul>

<ul class="b">
  <li>Korean</li>
  <li>English</li>
  <li>Math</li>
</ul>

<p> lists:</p>
<ol class="c">
  <li>Korean</li>
  <li>English</li>
  <li>Math</li> 
</ol>

<ol class="d">
  <li>Korean</li>
  <li>English</li>
  <li>Math</li>
</ol>

</body>
</html>

'inventor' 카테고리의 다른 글

getWebViewString, Javascript  (1) 2022.11.20
WebView, table  (0) 2022.11.19
WebView, Box, border, padding, margin,content  (0) 2022.11.19
WebView,HTML id  (0) 2022.11.19
WebView Class  (0) 2022.11.18