Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是我的小提琴http://www.jsfiddle.net/UxUMG/。我有一个下拉菜单。父 ul 具有 box-shadow 属性。当我将鼠标悬停在父菜单项上时,子 ul 出现时没有阴影。我必须做什么才能将整个菜单包裹在阴影中?
更改您的子类以包含 box-shadow 属性
.child { display: none; position: absolute; left: 160px; box-shadow: 5px 12px 18px rgba(0,0,0, 0.5); top: 0; z-index: 1; }
I have custom html helper which getting IEnumerable model from view and generates html table with headers and body
please advice how can get matadata from this model
thanks