css

What is the CSS secret of the Google search box?

I am studying the css methods Google uses to create their ui. I realized that the css code on their home page contains no reference to their search box; it seems like just a naked input tag, with not a border, background image or any of the conventions normally used to stylize a border. And yet it can display not only a hue and a kind of...

HTML, CSS Edit

i wrote some html code and want to edit its view using the css <div id="contact_4" name="contact" > <input type="checkbox" id="chk_4" class="contactChk"/> <img height="25" width="25" alt="" src="Images/Contacts/1.jpg" style="width: 30px; height: 35px;"/> <span class="contactItem" id...

Best way to display Javascript/Div based hover windows?

I'm talking about the Ibox sort. I.e, user clicks a link and a small javascript based div hovers up containing a small form or such. I will want to give users a <script> tag which they would place in their website. Then, they would put the required javascript function in their <a href> tag which they want to use for displaying the form....

How to load up CSS files using Javascript?

Is it possible to import css stylesheets into a html page using Javascript? If so, how can it be done? P.S the javascript will be hosted on my site, but I want users to be able to put in the <head> tag of their website, and it should be able to import a css file hosted on my server into the current web page. (both the css file and the j...

Why would I apply a relative font-size to the body tag?

I saw that some people use to set a font-size:80% for the body tag in CSS properties. Why would I do something like that? Why can't I simply add a relative font size to the specific properties (e.g. p{ font-size:90%})? ...

Which CSS selector should set background-image property?

In order to have an overall background image for a whole page, should I set the background image for the html, body, or both? ...

Is there a library to do CSS spriting automatically?

CSS Spriting can really help performance, but it's not the easiest thing to read and maintain. Are there any tools that would let me code the images individually but aggregate them up and replace the HTML with the correct subset of the montage? I'm specifically thinking a Ruby on Rails plugin, but if there's a package for another langu...

Bullets disappearing from bulleted list.

I'm trying to output a bulleted list (<ul>) in a LiteralControl, but a higher power doesn't like the bullets. When I inspect an <li> element, it has inherited the style list-style-type: none from the extJS styles. However, when I include the correct style in the ul tag, using the following code, the list gets rendered with an empty sty...

Will an image load if it has its CSS set so that visibility is hidden?

Will an image load if it has its CSS set so that visibility is hidden? ...

Why is my element with position:absolute always showing up underneath position:relative items?

It's all in the question but here's a simple example <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1" /> <ti...

Horizontal Ordered List (and IE)

I'm looking to generate an output similar to this: 1. One 2. Two 3. Three 4. Four from the following HTML Code <ol> <li>One</li> <li>Two</li> <li>Three</li> <li>Four</li> </ol> It seems that Internet Explorer does not want to display the number's (list-item's) when you float the li's in order to make ...

CSS Floating w/ Overlap

I'm trying to set up a simple horizontal tab structure for a page I'm working on, and I'm running into some trouble with floating div's combined with z-index that I'm hoping someone can help me with. Viewing the following code in a browser: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/...

Dude, where's my column?

(Apologies for the title, but that's about how I feel right now.) I've recently been given the… opportunity… to completely redesign the layout of a web site I support. In the interest of keeping my CSS simple and my HTML semantic, I decided to use a modified version of the "holy grail" layout (the main difference is moving the right co...

CSS Layout 2-Column fixed-fluid

Hello everyone, I was wondering if anyone here had a fairly simple tutorial for the following 2 column css layout. A left fixed column and a fluid content column, with a header and footer and equal column heights. Thanks in advance ...

Alter CSS class attributes with javascript?

Hi everyone, I have a css class defined, call it: <style type="text/css"> .Foo { position: fixed; left: 50px; top: 50px; } </style> where I position an element on the screen absolutely. Throughout my web page's execution, I create and delete many elements and give them class Foo. When I resize the browser, I want to change the "le...

wyswyg html form printing

I am starting this web app project (asp.net mvc) It's a document-based system, such that nearly each web page is a model of an official printed form (and users sometimes should be able to produce prints). I am wondering how much cost and time saving it will be if the form could be a wyswyg page that will serve both electronic and paper...

Will HTML be replaced by any new technology?

I see various frameworks being launched that promise Rich Ui and better User experience as they call it. Silverlight, Flash, Yahoo's new framework etc etc. Does this mean that over a period of time these frameworks will replace the existing HTML, JAVASCRIPT CSS based web applications? Wouldn't it be same as opening an application insid...

how to print another page from the current page ?

i need to print a different page from the current page , that is to describe my problem more precisely .. i need to put the print button in one page but need to print a different page , also need to send a value to the second page which is to be printed. If somebody could help me will be very much thankfull ...

how to print the contents of a hidden iframe?

i want to print a page which i put in an iframe but dont want the contents to be displayed in the webpage , but the print button doesnt work when i put the iframe to display='none' what i did:- i set the iframe style='none' "name="frame1" > <input type="button" onclick="frames['frame1'].print()" value="print!"> how can i print the ...

CSS - Fixed-Fluid Columns

In the body of my site, I am trying to create two columns - one on the far right with a fixed width (300px) for advertisements etc, and one on the left which will take up the remaining space on the page. How can this be accomplished in CSS? ...