css

How do you add a row listener to a Flextable in GWT?

How do you add a row listener to a specific row, or all rows in a table? I need to add a type of "onMouseOver" listener to the rows so that when you hover over them, it changes the background color of the row, much like getRowFormatter will allow you to do. ...

what is alignment css style for table layout?

I have a table in html. I prefer to layout the table centered. What is the css style for this layout? And any online css tools to interactively see the style change? ...

css orphan detector?

Hello, I'm wondering if anyone knows of a tool that will help me identify obsolete css (declared styles that never get used) in my site. thanks! ...

Getting actual height of an auto-heighted element in IE

hi hi guys, I'm pretty confused! with this: ... <div id="main"> <div id="content"> <div class="col1"> ...COLUMN1 CONTENT GOES HERE... </div> <div class="col2"> ...COLUMN2 CONTENT GOES HERE... </div> </div><!-- #content --> </div><!-- #main --> ... there are columns as you see, an...

How do I align text on the right using css when in a div with block elements

I wish to produce the following layout within a header div on my page, using CSS only +-----------+ + + + Image + Title text Some text aligned on the right + + +-----------+ I am having trouble aligning the text on the right. It keeps aligning immediately to the right and one line below...

SIFR vs Cufon vs Typeface.js

With browser support / licensing issues of @font-face (a feature of CSS3), which intermediate option do you prefer? Cufon,Typeface.js, or SIFR? Cufon is new but has been getting a lot of praise from the web design community, how does it differ from Typeface.js ? ...

replace image through css

okay backstory. I'm writing code in Stylish, a firefox plugin, to change the image that is shown up. the image property doesn't have a div tag, so i have to use this: img[src*="s_dschjungelplanet"]{ ########## } So this will replace "s_dschjungelplanet" anywhere in the page, in a img src. so my main problem is that im not sure HOW ...

How would I convert this table layout to divs/css?

Hi, I'm really trying to work with div's and I can't seem to get the equivalent to the following simple table layout: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt; <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>Table example</title> <me...

Problem displaying side tab navigation in IE7

I am attempting to build a "Tabbed" side navigation menu using html/css. I am going with the most convenient approach of using a table that has a single row and two cells (columns). The left cell is for the "tabs" and the right cell is for the content to be displayed. The left cell containing the tabs has a right border set to be the ...

Data protocol URL size limitations

Is there any size limitation for data protocol URL "data" URL scheme values? I'm interested in limitations in popular web browsers. In another words, how long data:image/jpg;base64,base64_encoded_data can be in <img src="data:image/jpg;base64,base64_encoded_data" /> or background-image: url(data:image/jpg;base64,base64_encoded_data)? ...

CSS not applying correctly in ZendFramework

Hello guys, am new to zend framework. Am having a little problem and a real hard time solving it myself. If i access my zend application by going to http://localhost/zendapplicationfolder/contact it displays correctly with css applying correctly but if i access the zend application by going to http://localhost/zendapplicationfolder/cont...

CSS Menu does not appear over flash

I have a drop-down/multi-level CSS menu on a page. The menu however doesn't appear over a flash chart I have. The apparent fix seems to be to put wmode:transparent (or opaque), but that doesn't work for me. I have also tried setting the z-level in the CSS to very high values (2000) but that doesn't work either. In addition, I'm using op...

how to achieve label popups on imagemap

This is my first time using map tag in html. I assume getting the tags on a image where I want is 'trial and error' Is it possible to have a tooltip type lable when user does a mouse over on the 'clickable' part of the image? something cooler would be a comic book style tooltip :) any ideas? ...

Is there a way other than with JS to accomplish table row highlighting with CSS in IE?

I'd like to add row highlighting on hover using on CSS that will work in Internet Explorer. I have tried the following: #tableId tr:hover td { background-color:#f00; } This seems to work in Opera, Firefox, and Safari, but not in IE. Is there a solution or is the only solution JavaScript? ...

sIFR 3: IE6 Extra Spacing

I'm using sIFR 3 on the following website http://www.bevelite.com.au/test2 which works a charm! The only problem is that I've got a footer div set to sit absolutely at the bottom of the page which it does but once sIFR has finished rendering it puts some extra space below the footer, defeating the purpose of my absolutely positioned foot...

What's the best way to convert table layout to CSS layout?

I'm about to begin working on a web page with a complex table-based layout (coded years ago). One of the things I'd like to do is convert the layout to a proper CSS layout with divs and spans. Can you suggest a good approach for tackling problems like this? Should I use a CSS framework like Blueprint? Just get in there and hack on it...

Fixed Positioning With Scrolling

If, for example, I have a menu using fixed positioning but it's larger than the height of the current window, is there a way to allow this to scroll? The browser's default behaviour is to just hide it, and not let you access it. div#sidebar { position:fixed; top:30px; left:0; bottom:4px; width:148px; background-...

How do I get Multiple Style Sheets to work on a single page?

Here's the situation. I made three style sheets for each of the three pages I am currently working on. One that works in IE8/Safari/Opera/Firefox. One that works in IE7 and one which if used alone works on IE6 I tested everything on www.xenocode.com/browsers and that sites' IE 6 and 7 emulators. 3 I used a variation of the artic...

Using firefox only CSS to round corners of elements?

I just noticed that Stack Overflow employs Firefox only CSS to round the corners of the user badges on the front page. It's an interesting idea but what would be the pitfalls and advantages of using Firefox only CSS (aside from the blatantly obvious ones)? -moz-border-radius:6px; -webkit-border-radius:6px; Above: The CSS used to round...

pure CSS minimized-height header, maximized-height body within an absolutely positioned DIV

I have an HTML editor widget that I want to appear within an absolutely positioned, fixed-size DIV. However, I don't know the absolute size of the DIV beforehand, and it may change, like if the user resizes the window. The editor, naturally, has controls and an editable area. Each has their own DIV. I want the controls to take up as ...