ASP.NET MenuItem Individual Styles

后端 未结 4 1902
無奈伤痛
無奈伤痛 2020-12-10 13:37

I\'m hoping to use an ASP.NET Menu Control for navigation through my site. However, I\'ve got a requirement that each MenuItem must be styled differently (different colors,

4条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-10 13:57

    Try like this to set style for each menu item:

    Code behind:

     mnuMail.Items[1].Text = "Inbox";  
    

    CSS class:

    .bold
    {
       font-weight: bold;
    }
    

提交回复
热议问题