Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/ajax/6.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Asp.net Ajax选项卡面板上的Ajax圆角扩展器?_Asp.net_Ajax - Fatal编程技术网

Asp.net Ajax选项卡面板上的Ajax圆角扩展器?

Asp.net Ajax选项卡面板上的Ajax圆角扩展器?,asp.net,ajax,Asp.net,Ajax,是否有在Ajax选项卡面板上创建Ajax圆角扩展器的方法? 或者是否有其他方法可以使用其他方法在Ajax选项卡面板上获得圆角 谢谢。 Firstcape最简单的解决方案是添加此css类定义(在旧浏览器中不起作用): 将此CSS样式添加到样式表中 还可以将CssClass=“CustomTabStyle”添加到设计页面上的AJAX选项卡容器中 这很有魅力 .ajax__tab_body{ -webkit-border-radius: 10px; -webkit-border-top

是否有在Ajax选项卡面板上创建Ajax圆角扩展器的方法? 或者是否有其他方法可以使用其他方法在Ajax选项卡面板上获得圆角

谢谢。
Firstcape

最简单的解决方案是添加此css类定义(在旧浏览器中不起作用):

将此CSS样式添加到样式表中

还可以将CssClass=“CustomTabStyle”添加到设计页面上的AJAX选项卡容器中

这很有魅力

.ajax__tab_body{
    -webkit-border-radius: 10px;
    -webkit-border-top-left-radius: 0;
    -moz-border-radius: 10px;
    -moz-border-radius-topleft: 0;
    border-radius: 10px;
    border-top-left-radius: 0;
}
.CustomTabStyle .ajax__tab_active .ajax__tab_outer, .CustomTabStyle .ajax__tab_header .ajax__tab_outer, .CustomTabStyle .ajax__tab_hover .ajax__tab_outer
{
    height: 24px;
    border: 1px solid #0445A6;
    border-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.CustomTabStyle .ajax__tab_active .ajax__tab_inner, .CustomTabStyle .ajax__tab_header .ajax__tab_inner, .CustomTabStyle .ajax__tab_hover .ajax__tab_inner
{
    height: 24px;
    border: 1px solid #0445A6;
    border-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}