gpt4 book ai didi

css - 如何将 Devexpress 主题应用到基本的 html 表格?

转载 作者:太空宇宙 更新时间:2023-11-03 19:14:41 26 4
gpt4 key购买 nike

我在我的 MVC3 w/razor 元素中使用 Devexpress 的 MVC 扩展。我有使用 Devexpress 的 MVC 扩展的数据网格以及没有任何样式的基本 html 表格。

有没有办法将 devexpress 样式应用到我的 html 表格以获得一致的外观?

最佳答案

您可以使用 css 设置网格样式,然后按照相同的原则设置表格。这是我创建的网格样式,然后是类似表格的样式

/************************GRID STYLE************************************/
.mGrid
{
width: 100%;
background-color: #fff;
margin: 5px 0 5px 0;
border: solid 1px #525252;
border-collapse: collapse;
font-size: 13px; /*width: 820px;*/
text-align: center;
}
.mGrid td
{
padding: 2px;
border: solid 1px #c1c1c1;
color: #717171;
height: 20px;
}
.mGrid th
{
padding: 4px 2px;
color: #fff;
background: #424242 url(images/grd_head.png) repeat-x top;
border-left: solid 1px #525252;
height: 20px; /*font-size: 15px; */
}
.mGrid .alt
{
background: #fcfcfc url(images/grd_alt.png) repeat-x top;
}
.mGrid .pgr
{
background: #424242 url(images/grd_pgr.png) repeat-x top;
text-align: left;
}
.mGrid .pgr table
{
margin: 5px 0;
}
.mGrid .pgr td
{
border-width: 0;
padding: 0 6px;
border-left: solid 1px #666;
font-weight: bold;
color: #fff;
line-height: 12px;
}
.mGrid .pgr a
{
color: #666;
text-decoration: none;
font-size: 13px;
}
.mGrid .pgr a:hover
{
color: #AED434;
text-decoration: none;
font-size: 13px;
}

/************************END GRID STYLE************************************/

/************************mGrid Table Look alike STYLE************************************/
.mGridLookAlikeTable
{
width: 100%;
background-color: #fff;
margin: 5px 0 5px 0;
border: solid 1px #525252;
border-collapse: collapse;
font-size: 13px;
/*width: 820px;*/
text-align: center;
}

.mGridLookAlikeTable td
{
padding: 2px;
border: solid 1px #c1c1c1;
color: #717171;
height: 20px;
}
.mGridLookAlikeTable th
{
padding: 4px 2px;
color: #fff;
background: #424242 url(images/grd_head.png) repeat-x top;
border-left: solid 1px #525252;
height: 20px; /*font-size: 15px; */
}

/************************END mGrid Table Look alike STYLE************************************/

关于css - 如何将 Devexpress 主题应用到基本的 html 表格?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7130938/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com