如何删除ol中的数字?

时间:2016-11-18 05:45:34

标签: html css

请原谅我缺乏行话!

我正在尝试将投资组合网站放在一起,我需要帮助才能使用flexslider。我尝试使用它,但我的CSS中出现了一些错误,导致我的页面无法正常呈现。

enter image description here

3 个答案:

答案 0 :(得分:5)

试一试: -

<context:property-placeholder location="classpath:user.properties"/>

<bean id="ftpClientFactory" class="org.springframework.integration.ftp.session.DefaultFtpSessionFactory">
    <property name="host" value="${host}"/>
    <property name="port" value="${availableServerPort}"/>
    <property name="username" value="${userid}"/>
    <property name="password" value="${password}"/>
</bean>

<int:channel id="ftpChannel"/>

<int-ftp:outbound-channel-adapter  id="ftpOutbound"
            channel="ftpChannel"
            remote-directory="/"
            session-factory="ftpClientFactory">
    <int-ftp:request-handler-advice-chain>
        <int:retry-advice />
    </int-ftp:request-handler-advice-chain>
</int-ftp:outbound-channel-adapter>
ol li{
  list-style-type: none;
  color:blue;
}

答案 1 :(得分:2)

ol li{
 list-style:none;
 }

ol li{
list-style:none!important;
}

答案 2 :(得分:1)

您可以使用CSS

来实现此目的

ol li{
  list-style-type: none;
}
<ol>
  <li>1</li>
  <li>2</li>
  <li>3</li>
</ol>