0
votes
1answer
22 views

CSS show element attribute value, not element content

I have elements with this pattern (XML, not HTML, but CSS should still work): <expan abbr="XX">YY</expan> Sometimes I want to see "YY" in the output, sometimes I want to see "XX". No ...
2
votes
2answers
57 views

CSS data attribute new line character & pseudo-element content value

Is it possible to have a new line in a data attribute ? I am trying to do something like this: CSS: [data-foo]:after { content: attr(data-foo); background-color: black; } HTML ...
2
votes
1answer
37 views

What is sharedAttr in CSS?

everybody! Reading this topic: Change background color of HTML <area> tag I saw the part of a CSS code: area{ sharedAttr: 'attribute'; } I wonder what is this sharedAttr. What is ...
-3
votes
4answers
97 views

Remove (!important) attribute from class [duplicate]

I need to remove a !important-attribute from an element using jQuery. Is that possible? While I wanted to create a js-fiddle for it, I noticed it doesn't even work with a not-!important style: ...
0
votes
2answers
43 views

Style div (with specific tag), without class or id

I have like this div, that has no ID or CLASS attributes: <div data-placement="kolp"> blabla </div> How can I target that in my CSS ? Maybe some javascript help is needed?
0
votes
2answers
53 views

CSS div not floating left, conflicting styles?

I'm trying to make a loading bar with two divs, the background bar is grey and the foreground will be green. The bar in the background (.bar) is fine but the green bar (.load) is centered within the ...
1
vote
3answers
46 views

CSS - Match a whole attribute value

HTML <div data-whatever='something cols-16 else'> </div> This works: Will work - CSS [data-whatever*='cols-1'] { background: red; } It will find the div and make it red. Will ...
2
votes
1answer
60 views

What this HTML code means?

I've viewed in some source code and found something like this: <div class="classname {height: 300px; width: 200px}"></div> I know that element styling is available by using the style="" ...
2
votes
1answer
62 views

Using CSS to select dom elements to select a class name containing a number greater than X

I was researching css attribute selectors to try and solve a problem of mine: https://developer.mozilla.org/en-US/docs/CSS/Attribute_selectors I have a bunch of dom elements which are all classed ...
0
votes
1answer
53 views

GWT setProperty with TransformOrigin

I would like to apply the following style to an element: style = "transform-origin: top left;" I'd like to use in GWT element.getStyle().setProperty("TransformOrigin", myValue); where "myValue" ...
2
votes
2answers
73 views

Please what is the difference between [attribute~=value] and [attribute*=value]

cannot find the difference between these two selectors. Both seem to do the same thing i.e select tags based on a specific attribute value containing a given string. For [attribute~=value] : ...
1
vote
3answers
92 views

ASP tags and class attribute

I've been working on someone's project and noticed Visual Studio produces a message for each ASP tag that has a class attribute. For example: Attribute 'class' is not a valid attribute of element ...
0
votes
2answers
53 views

bgcolor attribute

Havin a table with kind of <tr bgcolor="#aacbdd"> And I use reset.css which says ...td { background: transparent; .... And this rule removes all backgrounds set in bgcolor attribute. But ...
2
votes
1answer
65 views

CSS attribute selectors

I study about css in w3school . The css selectors table has rows : [attribute|=value] [lang|=en] Selects all elements with a lang attribute value starting with "en" [attribute^=value] ...
0
votes
2answers
67 views

CSS rule from data-* attribute

Say I have a portion of my HTML file that looks like this: <div data-w="20px"> <p>this is some text this is some text this is some text</p> </div> And the <div>'s ...
1
vote
3answers
66 views

selecting adjacent elements in CSS

In CSS, Is it possible to match the elements which have a certain property followed by an element which has another property, ie. Let's consider <div my-custom-attribute="0"> </div> ...
1
vote
2answers
81 views

Preventing a function from working in JavaScript?! How?

I have so far started with a single html page, using individual forms (<form> </form>) as the content that is displayed, so clicking onto the submit button will fade out the current form ...
0
votes
2answers
132 views

How to set control properties in css?

Is there a way to set this kind of properties in css? So I can use the same calendar and be more organized with my code <asp:Calendar ID="Calendar1" runat="server" Height="189px" ...
1
vote
3answers
353 views

Boolean string comparison in conditional attribute with MVC4 / Razor 2 returns unexpected results

After upgrading my MVC 3 solution to MVC 4 with Razor 2 I came across the following problem. This code in a view @{ string main = "archive"; } <div class="selected-@(main == ...
-1
votes
3answers
69 views

replacing an attribute by use of attr function

<div> <a id="_a-link" href=""><img src="/local/img/image1.png" alt=""/></a> </div> For that image link, I try the following jquery code to change its image ...
0
votes
4answers
104 views

remove all attribute of a style

<div><a id="link" style="position:fixed !important; bottom:0px !important; right:0px !important; color:#000000 !important;font:10pt Arial !important">press me</a> ...
-3
votes
1answer
84 views

CSS classes are not getting applied when assigned inside jQuery .attr() [closed]

I am manipulating the data-complete-text attribute of a link using jQuery. My code looks like this. var complete = _self.attr("data-complete-text"); _self.attr("data-complete-text","<span ...
0
votes
1answer
167 views

javascript get style and increment

I'm trying to make a slider that changes the margin-left attribute in the external css onclick. So I need to get the attribute and then set the new attribute. here is my code: <style> #divName ...
1
vote
0answers
178 views

CSS Selector Attributes Python

I have a Scraper on Scraperwiki that is picking out specific content via CSS Selector Attributes. I have it scraping spans and lines in numerical order at the moment. def scrape_table(root): ...
2
votes
2answers
167 views

CSS: multiple attribute selector

What is the syntax for doing something like input[name="Sex" AND value="M"] Basically i just want the input element that has both the attribute name="Sex" and it must have the value="M". Elements ...
1
vote
0answers
72 views

an attribute seems to keep being named something else when looking at my html markup

I have a custom attribute i added to my html doc, and accordingly defined it at the top of the page. The thing that confuses me is that even though i assign it to an object, when the object is ...
0
votes
1answer
79 views

Jquery Accordion adding replacement attribute

I'm trying to change the font size for the title section of the accordion located here body { font: 16px Sans-Serif; } Unfortunately, i already have a "body" attribute which overrides the above ...
0
votes
1answer
90 views

How to “add details” to CSS (example Box shadow)

I'm making a navigation bar and essentially I have box-shadows on the bottom, left (first-child) and right (last-child). My structure is <ul><li><a><span> I have box-shadows ...
0
votes
1answer
30 views

lightbox and “a” attributes (want seperate results)

I gather that coming here is like asking Einstein about long-division, but hoping someone can help- I've searched google, and this site, and can't find the answer. I'm sorry if my terminology isn't ...
3
votes
2answers
64 views

HTML: How to Use href in class attribute of an element

I saw an unusual thing in This Website: AccuWeather.com Some tags in this page (like lis) have a href with a url in its Class attribute, Like the picture below, So what I want to know is: 1- Why ...
0
votes
3answers
41 views

html attribute correct (in terms of standard)?

I have found this odd (for me) syntax in the source of a website: <td style></td> Should an attribute be placed and not defined in an html element?
5
votes
2answers
157 views

Dashed border on link is appearing solid

I want the border attribute on a visited link to render dashed. I can only get it to render solid and I can't figure out why. Any help would be great. Thanks Here is the css code I'm using: ...
0
votes
3answers
159 views

Can one disable an input field by pure css?

Like with attribute disable on the <input> html tag. I'm not interested in the effects of disabling, like not being included in a POST of the form, and the styling could of course be redone in ...
0
votes
2answers
725 views

what are the default colors for a hovered over element's title text and background?

In chrome/firefox I know hovering over an element shows its title with a yellow background with black text, but does anyone know the the exact colors in HEX or RGB for each? thanks, tim
0
votes
2answers
50 views

CSS : easy way to apply _blank to multiple links?

each day im adding around 50 links + to an intranet page , is there an easy way of adding the _blank attribute - by using CSS instead of applying it to EVERY.SINGLE link I put in? Cheers for the ...
3
votes
3answers
3k views

Make HTML5 video poster be same size as video itself

Does anyone know how to resize the HTML5 video poster such that it fits the exact dimensions of the video itself? here's a jsfiddle which shows the problem: http://jsfiddle.net/zPacg/7/ here's that ...
0
votes
5answers
593 views

Javascript, CSS: Get element by style attribute

I'd like to: Find a style attribute for all elements in the page (for instance: all elements that have color:#333;) Change this attribute for all of them (for instance from color:#333 to ...
0
votes
1answer
238 views

dynamically loading html title attribute

Here is an excerpt from my markup: <img src="<?php echo get_post_meta($post->ID, 'thumbnail_value', true); ?>" title="<?php the_tags(); ?>" alt="" class="thumb"></a> ...
0
votes
1answer
1k views

Change cursor image

I set a cursor image with css: #scroll_up{ display: block; position: absolute; width: 960px; height: 300px; cursor: url(../imgs/cursor_up.png), auto; } This style is applied ...
15
votes
5answers
492 views

Different ways of accessing attribute values using javascript

document.getElementById('myId').style; is one way of accessing the style attribute.. Also we can do the same using document.getElementById('myId').getAttribute('style'); What is the difference ...
2
votes
3answers
181 views

Replacement for <ol start=…>

I've been playing around a bit finding a way around the start attribute in ol elements. As you may know, start has been declared deprecated in official standards like HTML 4.01 and XHTML 1.1, and the ...
8
votes
4answers
4k views

CSS values using HTML5 data attribute

width: attr(data-width); I want to know if there's any way it's possible to set a css value using HTML5's data- attribute the same way that you can set css content. Currently it doesn't work. ...
1
vote
6answers
909 views

javascript: how to get elements attribute set in css class

I'm quite new into javascript and I can't find the way through this: I want to read the elements height and width. here is the example: <style type="text/css"> .big { height: 100px; ...
0
votes
1answer
1k views

smart gwt style attribute

I cannot change attributes of HTMLFlow, i would like to use my defined css for the HTMLFlow and then setAttribute for FontSize in the constructor but nothing changes. First I extend HMTLFlow like ...
0
votes
2answers
575 views

css class attribute changing in dynamically

I have a codeignter based site.In that i loaded the css file like this: <link href="<?php echo base_url();?>style/style.css" rel="stylesheet" type="text/css" /> This is the content in ...
0
votes
2answers
90 views

Boolean value in CSS3 style attribute

In CSS3, is there any attribute that takes false or null value? I suppose and expect not, but wanted to make sure. I am writing a javascript code (related to ajax interaction) that sets or removes an ...
2
votes
1answer
336 views

CSS Rel not working in Google Chrome?

I'v tried adding some css specific for the rel attribute, and demoing it in chrome. Example: pre[rel="js"]:before { content:"JavaScript"; } pre[rel="css"]:before { content:"CSS"; } Then of ...
0
votes
1answer
112 views

stripping all the unnecessary attributes in an html document [duplicate]

Possible Duplicate: Tool to identify unused css definitions I like to write a class for everything, I'm a class-freaker cause after writing an html document, it's more easy to manage the ...
0
votes
2answers
243 views

Inline width for img or css width?

I would like to know which of the following is better to use, or is generally better: <img src = "foo.png" height = 32 width = 32 /> OR <img src = "foo.png" style = "height: 32px; width: ...
19
votes
3answers
4k views

Is type=“text/css” necessary in a <link> tag?

I was wondering whether or not it is necessary to use <link rel="stylesheet" type="text/css" href=...> over <link rel="stylesheet" href=...>. The rel="stylesheet" marks the information ...

1 2