作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何在标签(项目)上添加 CSS 类
示例:['label'=>'Home', 'url'=>['site/home']]
这不起作用 ['label'=>'Home', 'class'=>'list-group-item', 'url'=>['site/index']],
最佳答案
刚刚开源的 Nav 小部件:
/**
* @var array list of items in the nav widget. Each array element represents a single
* menu item which can be either a string or an array with the following structure:
*
* - label: string, required, the nav item label.
* - url: optional, the item's URL. Defaults to "#".
* - visible: boolean, optional, whether this menu item is visible. Defaults to true.
* - linkOptions: array, optional, the HTML attributes of the item's link.
* - options: array, optional, the HTML attributes of the item container (LI).
* - active: boolean, optional, whether the item should be on active state or not.
* - items: array|string, optional, the configuration array for creating a [[Dropdown]] widget,
* or a string representing the dropdown menu. Note that Bootstrap does not support sub-dropdown menus.
**/
['label'=>'Home', 'url'=>['site/index'],'options'=>['class'=>'list-group-item']]
[
'label'=>'Home',
'url'=>['site/index'],
'options'=> ['class'=>'list-group-item'],
'linkOptions'=>['class'=>'item-a-class'],
]
关于Yii2 如何将类添加到菜单项的标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25832160/
我是一名优秀的程序员,十分优秀!