Tagged Questions
The css-classes tag has no wiki summary.
6
votes
6answers
5k views
how can i get the current css class of a div with JQUERY
Using jquery ,how can i get the current css class of a div called "div1" ?
5
votes
4answers
135 views
Multiple CSS Classes on a Single Element issue
I'm using a combination of two classes on a span element.
Both look like they're working by themselves... Together they're not.
.black {color:black;}
.size_14 {font-size:14px;}
<span ...
5
votes
4answers
616 views
In CSS, is “.class1.class2” legal and common usage?
I am quite used to seeing
div.class1
and
#someId.class1
but what about
.class1.class2
? And I think it is identical to
.class2.class1
? Because there was an element with id someId but ...
4
votes
3answers
106 views
How to get list of Css class use in the HTML file?
I need list of classes used in an html file. Is there any tool where i can get list of classes in the HTML file?
4
votes
2answers
81 views
Are multiple CSS classes per tag safe to use?
I am starting up a brand new web project and would like to know if I can safely use multiple CSS classes nowadays.
<div class="float-left bold bordered"></div>
Do most common browsers ...
3
votes
7answers
332 views
How do I remove a CSS class from one anchor and assign it to another using jquery?
Here are my anchors,
<a ID="lnkbtn0" class="page-numbers" href="#">1</a>
<a ID="lnkbtn1" class="page-numbers" href="#">2</a>
<a ID="lnkbtn2" class="page-numbers" ...
2
votes
3answers
32 views
How can these generic classes be distinct between different divs?
I'm creating a notification system for a game to work similar to how notifications might work in a phone.
The notifications are all created initially, hidden, and later the game is supposed to ...
2
votes
3answers
32 views
Assigning classes to elements through CSS
I'd like to tell the browser to assign certain CSS classes to elements matching a particular selector. Can I do it with pure CSS and if yes, how?
Example: I want all the h5 elements inside a div with ...
2
votes
2answers
34 views
css: changing the ruleset vs using selectors to switch classes/apply styles
Lately I wondered about editing elements styles not by switching their classes on dom, but by changing the actual ruleset for the css class or selector.
So instead of something like
$('.some').hide()
...
2
votes
3answers
45 views
How to select class properties via jQuery
This is the HTML in question:
<a href="#" class="a01">xxx a01</a>
<a href="#" class="b02">xxx a021</a>
<a href="#" class="c03">xxx aa021</a>
<a href="#" ...
2
votes
1answer
168 views
Setup default CSS class for Rails' form builder helper methods
I'm looking for a generic way to apply some external CSS frameworks in a Rails application. These frameworks typically define a set of class names which should be used for certain HTML elements.
...
2
votes
3answers
64 views
Is there a preferred approach to setting an item's class using jQuery
Before jQuery I would have used something like the following code to set a class on an element:
document.getElementById("MyElementID").className = 'MyClassName';
This has the intended behaviour of ...
2
votes
2answers
105 views
style rule not being applied to td element
I am using a logic to highlight cells based on if the cursor is hovering over the row:
function setupTable(tbl) {
if ($(tbl).find('tbody').size() > 0) {
$(tbl).find('tbody ...
2
votes
4answers
88 views
How do I change an elements class in jquery?
Assuming I have <ul class="myList verticalList"> how can I change the value of verticalList using jquery?
2
votes
4answers
105 views
What is the right way to use more than 1 CSS class on an element?
I can imagine it can get complicated fast trying to debug style issues when there are multiple classes associated with elements. Currently I'm using multiple classes but in a way that one type of ...
2
votes
2answers
435 views
Jquery - How to check if classname exists
i want to check the style Tag if a classname exist or not.
if ($("head > style:eq(2)").hasClass('className'))
{
alert('yes');
}
Thanks in advance
Peter
2
votes
8answers
454 views
Multiple CSS Classes: Properties Overlapping based on the order defined
Is there a rule in CSS that determines the cascading order when multiple classes are defined on an element? (class="one two" vs class="two one")
Right now, there seems to be no such effect.
Example: ...
2
votes
3answers
2k views
How to add CSS classes to Zend_Form_Element_Select option
I'm trying to add a CSS class to a Zend_Form_Element_Select option, but I just can't find a way to do it.
The desired output would be something like this:
<select name="hey" id="hey">
...
2
votes
5answers
566 views
css: Should I limit the use of universal selectors (*.classname vs a.classname)?
I have a question about css selectors.
Say I have the following html
<div class="message">
<div class="messageheader">
<div class='name'>A news story</div>
...
1
vote
0answers
48 views
How can a CSS class be set on DataGrid dynamic columns?
The simple question is: how do you add custom styles on a DataGrid web control in ASP.NET that is retrieving a dynamic number of columns? I'd like to set a custom width for each column once we know ...
1
vote
2answers
147 views
Using CSS to style links within specific tags (header, nav, article, footer) without classes or id's?
I am trying to style some links in my navbar. Since I am using html5, I have placed the links within the standard <nav> and then a <ul> and then <li> tag. How would I style only the ...
1
vote
3answers
677 views
asp.net adding class to current menuItem
I am new the asp.net so i will appreciate a full code answer.
I have a web site in asp.net and c# i added a menu to the site.master page it looks like this:
<asp:Menu ID="mainMenu" ...
1
vote
5answers
85 views
What should a CSS Class represent? [closed]
Possible Duplicate:
Should css class names like 'floatleft' that directly describe the attached style be avoided?
I was wondering what the best practices were for the naming and ...
1
vote
3answers
734 views
How to get a table column index in JavaScript knowing its class?
I want to hide/show table columns
using classes on columns,
without adding classes to each <td>
Table sample:
<table id="huge-table" border="1">
<caption>A huge ...
1
vote
3answers
934 views
Applying CSS to .NET ImageButton
I have the following CSS that I can apply to an HTML input tag.
#headerSearch
{
width: 265px;
}
#headerSearch .text
{
width: 215px;
}
#headerSearch #searchButton
{
background: ...
1
vote
2answers
40 views
Applying CSS class declarations
Let's say this is my CSS file below.
.redText{
color:#FF0000;
}
p{
font-weight:bold;
}
My goal is to make all of the paragraphs have bold and red text. Obviously I can just rewrite the color ...
1
vote
4answers
194 views
Check element class by jQuery
How do you check if the class that is assigned to a div? For example, I want to check if a div has a class of header-link then it should alert a message box similar to this:
$('.header ...
1
vote
4answers
2k views
How to add a CSS class name to a BoundField so that I can find it with jQuery after GridView is rendered?
I want to add a class name to some of my BoundFields in the GridView control; so that once the GridView is data-bound and rendered I can obtain something like:
<td class="Tag1">Some data came ...
1
vote
2answers
182 views
Can I specify multiple CSS classes with one class name?
I have several css classes I'd like to specify on an element. But I don't want to have to repeated place 3, 4 or more classes each time.
I'd like to go from
<span class ="class1 backgroundclass ...
1
vote
3answers
448 views
CSS - “style” property not overriding class
I have a DIV container that is a CSS class defined on the top level. That container also has a style that has a couple elements that should override the main class elements. As far as I understand, ...
1
vote
1answer
460 views
Change css class depending on label's text
I have asp:Table with number of asp:Label inside asp:FormView, it represents short stats info.
I need to set Label.CssClass to "red" if it's text isn't "0".
Currently I do this on FormView.DataBound ...
1
vote
2answers
119 views
How do I run jQuery form validation by class?
I've been using the jQuery form validator, but I can't seem to figure out how to trigger it by class. Take this example:
$("#myform").validate({
rules: {
field: {
required: true,
...
1
vote
1answer
2k views
How do I specify CSS classes for specific rows in a GridView?
I am creating a SharePoint web part in C# and part of it outputs a GridView control to the page. While I can get fairly extensive control over the way it is displayed by setting the CSS class of the ...
1
vote
4answers
2k views
Ajax:ModalPopup js exception, BackgroundCssClass is null
I use a modal popup extender, i followed all the instructions on the toolkit sample page, except that i didn't set the property BackgroundCssClass.
this is what happens:
Is there a way I can get ...
0
votes
3answers
28 views
how change active class on a listItem using jquery
please see the demo below :
http://www.templateaccess.com/demos/walkin/
i bought this template and really really could n't find a way how does active class on menu_nav li work?
that menu_nav html is ...
0
votes
2answers
40 views
AS3 CSS- like classes for Objects
I'm very new to AS3.
I'd like to give certain objects in a MC the "class" ( meaning css like class ) rollover. So I can automatically create a rollOver that fades up all objects declared as rollOver ...
0
votes
4answers
82 views
How to get element by class name
I want to know if there is a way to getElementByClassName("classname").innerHTML function or something to the equivalent of getElementById("ClassName").innerHTML.
Please help!
0
votes
2answers
44 views
CssClass not Changing in Asp.net Website
I am using a MasterPage for my website, with various tabs that are placed in the the header (of the MasterPage). The code for the tabs looks like (written in C#):
<ul id="tabMenu"> ...
0
votes
1answer
132 views
PHP XML/HTML DOM get CSS class attribute with whitespace
I've got the following problem:
I'm using the PHP XML DOM parser and when I'm parsing real-world HTML, the 'class' attributes of many elements have spaces in them, so there are actually multiple CSS ...
0
votes
5answers
61 views
Is there a way to mix ids and classes with > in CSS
What I want to do is something like:
#div_id > .some_class
{
}
I don't want to change the class everywhere. I only want to change the class if it in that particular div.
Is ther some other ...
0
votes
7answers
88 views
How do I select all classes greater than a value
Suppose I have the following:
<div class="d1">.</div><br>
<div class="d2">.</div><br>
<div class="d3">.</div><br>
<div ...
0
votes
1answer
48 views
Can't align my image to the left
At my wordpress theme at http://www.iam-us.nl/over-i-am-us I can't align my image to the left.
I have added those WordPress Generated Classes to the css
/******************************************
* ...
0
votes
1answer
48 views
CSS ID's and Classes defined on one element if there are children which one is the parent?
Given a structure like:
<div class="Stargate" id="MGM">
<div class="SG1">
</div>
<div id="Atlantis">
</div>
</div>
What will be SG1's and ...
0
votes
1answer
131 views
Telerik-Grid: Enable skin classnames in addition to HeaderStyle-CssClass
I'm using telerik ASP.Net Ajax grid component, and I'm facing a problem.
If I'm adding HeaderStyle-CssClass="SomeClassName" to the telerik:GridBoundColumn, telerik won't add the Sorted classname on ...
0
votes
2answers
328 views
PHP first and last classes in a while loop
I'm trying to work out how to add a first and last class on the first and last items outputted from a while loop. The only thing I've found through searching has been relevant to working with mysql ...
0
votes
1answer
49 views
Apply effect of a pseudo class to all members of a class
I want to apply something like this
a:visited{background-color:#0F0;}
to all <a> tags, if at least one of them has been clicked.
I know how to do it using JavaScript, but is there a pure CSS ...
0
votes
6answers
161 views
Which method is better? CSS classes or ID's?
Let's consider these 2 ways of writing the same code:
Method 1
<div id="header">
<div id="user">
<a id="userName">Username</a>
<a ...
0
votes
3answers
109 views
How to Apply a CssClass to a series of similar objects with a different ID
I have a large application in which I have lots of Submit - Delete - Cancel - Add and .. buttons. All of them use a same .Button CssClass.
I decided to reach the interface so that I want to differise ...
0
votes
1answer
362 views
How to include more than one .css file in ASP.NET page?
I would like to have two .css files. One for each master\content page and one file for common elements. How to do this?
The following code doesn't work (css classes from Common.css file are not ...
0
votes
1answer
200 views
How to add more than 1 class to an element in ASP.NET?
I'm trying to programatically add a second class to a <td> element in C#.
The element I want to add the class to already has a class assigned to it.
If I do something like
myObject.CssClass = ...