Shikha takier
Shikha takier

Reputation: 11

CSS For <LI> Tag

I have a tab panel with three tabs.And below is the code that I got through the "FIREBUG" and noticed that only one of the tab that is rendered as <LI> has a class and rest of the two tabs does not have it.Is there any way that if I make some changes in Mozilla Firebug it gets reflected in the actual asp.net code forever.

<ul id="ext-gen59" class="x-tab-strip x-tab-strip-top">
<li id="tbGrid__pnlMain" class=" x-tab-strip-active">
<li id="tbGrid__pnlArticles" class="">
<li id="tbGrid__pnlCalendar" class="">
<li id="ext-gen60" class="x-tab-edge">
<div id="ext-gen61" class="x-clear"></div>
</ul> 

Upvotes: 1

Views: 287

Answers (2)

Philemon philip Kunjumon
Philemon philip Kunjumon

Reputation: 1422

your code does not have closing of li tag...

you code may be

<ul id="ext-gen59" class="x-tab-strip x-tab-strip-top">
<li id="tbGrid__pnlMain" class=" x-tab-strip-active"></li>
<li id="tbGrid__pnlArticles" class=""></li>
<li id="tbGrid__pnlCalendar" class=""></li>
<li id="ext-gen60" class="x-tab-edge">
    <div id="ext-gen61" class="x-clear"></div>
</li>
</ul>

Hope this helps....

Upvotes: 2

AlexMA
AlexMA

Reputation: 10192

Firebug cannot edit your code--it can only modify the page after it has been loaded. It's a debugging tool.

Upvotes: 3

Related Questions