3 回答
TA贡献1805条经验 获得超9个赞
您可以在<script>标签之后添加以下内容,这将创建自定义 CSS:
<style>
i.custom-button-previous:before {
content: "<<";
}
i.custom-button-next:before {
content: ">>";
}
</style>
这会将给定形状的箭头放在内容中缺少箭头的两个位置
TA贡献1872条经验 获得超3个赞
在文档中,我发现需要 bootstrap css 来运行这个选择器。
我在上面提供的代码中看不到引导程序导入,它应该是这样的:
导入 'bootstrap/dist/css/bootstrap.css';
请尝试导入此内容或更新问题。
TA贡献1780条经验 获得超5个赞
日期选择器使用字形图标作为箭头。你能检查一下你的网站中是否导入了“glyphicons-halflings-regular.woff”文件,如果没有包含在css下面
@font-face {
font-family: 'Glyphicons Halflings';
src: url('http://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/fonts/glyphicons-halflings-regular.woff'), url('http://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/fonts/glyphicons-halflings-regular.woff') format('woff');}
}
添加回答
举报