请原谅我缺乏行话!
我正在尝试将投资组合网站放在一起,我需要帮助才能使用flexslider。我尝试使用它,但我的CSS中出现了一些错误,导致我的页面无法正常呈现。
答案 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>