scss Sass:合理的导航菜单

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了scss Sass:合理的导航菜单相关的知识,希望对你有一定的参考价值。

.nav {

	font-size: 14px;
	font-weight: bold;
	a {
		color: white;
		&:hover, &:focus {
			color: black;
		}
	}

	font-size: 0 !important; /* remove physical spaces between items */
	text-align: justify;
	zoom: 1; //ie
	text-justify: distribute-all-lines; /* distribute items in IE */
	list-style-type: none;
	margin: 0 auto;
	padding: 0;
	
	&:after {
		content: "";
		display: inline-block;
		width: 100%;
	}

	li {
		zoom:1; //ie
		font-size: 14px;
		text-align: left; /* customize to suit */
		vertical-align: top; /* can customize to suit */
		display: inline-block;
		// width: 31.3%; /* optional, only need for text content to wrap */
		// margin-bottom: 1em; /* optional, customize to suit */
		float: none // optional, overide the float left
	}
}

以上是关于scss Sass:合理的导航菜单的主要内容,如果未能解决你的问题,请参考以下文章

scss #sass #css展开元素,例如手机菜单。

scss Twig / SASS / JS中的可访问下拉菜单(Wordpress / Timber-oriented)

Scss的使用场景

scss 导航菜单悬停效果

scss 页脚菜单的管理员和常用导航项

如何从引导程序中获取仅支持导航栏菜单而不支持整个引导程序库的 scss 文件?