博客园  :: 首页  :: 新随笔  :: 联系 :: 管理

用CSS 对TREEVIEW 的外观进行改造

Posted on 2009-03-13 13:46  codingsilence  阅读(496)  评论(0编辑  收藏  举报
此代码来自 MS的 small business starter kit /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* TREE VIEW CONTROL ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/ .TreeView { border-bottom:1px dotted #B2B2B2 !important; } .TreeView div { margin-left:5px; } .TreeView table { border-top:1px dotted #B2B2B2 !important; } .TreeView div table { border-bottom:none !important; border-top:none !important; } .TreeView table td { padding:2px 0; } .LeafNodesStyle { } .RootNodeStyle { } /* ALL ELEMENTS */ .NodeStyle { } .ParentNodeStyle { background:yellow; } a.SelectedNodeStyle { background:#E5E5E5; display:block; padding:2px 0 2px 3px; } ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ treeview 控件的代码 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

All Items

<%----%>