How to set li without clicking in css: 1. Find the relevant CSS and write "list-sytle:none;" under ".li" and ".ul"; 2. Write in the head part Enter "list-style:none;". </p></blockquote> <p><img src="https://img.php.cn/upload/article/202106/19/2021061914275280266.jpg" alt="How to set li not to click in css" ></p> <p>The operating environment of this article: windows7 system, css3 version, Dell G3 computer. </p> <p><strong>How to set li not to click in css? </strong></p> <p><li> Tags are used by many people when making websites, but there is always a small black dot in front of the display effect. Many people don’t want this effect, but they don’t know it. How to remove, however we can use the following methods to remove it. </p> <p>1. Write code in CSS. Find the relevant CSS, </p> <p>Write it under .li and .ul<code>list-sytle:none;</code>Of course, some people will write it like this<code>list-style-type:none </code>, this way of writing is the most common especially in some CMS. </p> <p>2. Find the head part of the relevant page and write the following code </p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false"><style type="text/css">list-style:none;Copy after loginRelated introduction: Tag definition list item. tags can be used in ordered lists () and unordered lists (). Differences between HTML and XHTML In HTML 4.01, the "type" and "value" attributes of the li element are deprecated. In XHTML 1.0 Strict DTD, the "type" and "value" attributes of the li element are not supported. Recommended learning: "css video tutorial"