css

How to control the postioning of a fieldset with css?

I have the following code: <fieldset> <legend> <strong>Personal Information</strong> </legend> <ul> <li> <label for="first_name">First Name</label><br /> <input type="text" id="first_name" name="first_name" value="" maxlength="30" /> </li> ... </ul> </fieldset> ...

How to reference css in actionlink?

A actionlink like: <%= Ajax.ActionLink("more", "myControl", new { id = item.ID }, new AjaxOptions { UpdateTargetId = "pop", OnComplete = "showdetail" }, new { @class = "search" }) Then I set css in css file like: a.search {...} a:search.hover {...} It doesn't work. If I change css name is css file as: .search {...} ...

How to place checkboxes side by side?

I'm using label-input pairs, with the following style for labels, but when I use two CheckBox controls on the same line, the checkbox labels (control prop[erties, not separate Label controls) appear together, to the left of the two checkboxes. label { float: left; width: 150px; padding-right: 10px; ...

changing an element's background using the CSS property

Hello guys, I have a div with a background, and I'd like to change the background's position on click. This is my jQuery snippet : $('#sprite').click(function() { $(this).css('backgroundPosition','-40px'); }); While this is working ok, I'd like to return to the original position with a 'second' click, resetting all. Mmm, is thi...

Problem creating a scrollable content area with height defined in percentage

Hi , We are creating a web page with header, content and footer. The header and footer should be visible at all time and the content should be scrollable. The container div has a fixed width but no fixed height. I solved the problem of keeping the footer at the end by using css sticky footer (http://ryanfait.com/sticky-footer/) The con...

css in Google Earth plugin

Hello just wondering if it is possible to style a pop-up balloon via an external/linked .css file, rather than inline styles ? thanks in advance ! .k ...

How can I add a css class to an updatepanel in ASP.Net?

How can I add a css class to an updatepanel in the c# code behind file of asp.net ...

HTML/CSS: Making the main scrollbar always visible

Hi I saw a trick once on a website which made the main scrollbar of the page always stay visible. I can't remember how it was done. Does anyone know? ...

Why is my entire site a tiny bit smaller in Firefox?

In typical web design fashion, there's always something that doesn't look quite right between two browsers. This one just completely lost me though. I open the site in Safari. Everything is dandy. I open it in Firefox. The entire page is displayed, just fine, but about 10-20% smaller. Images, fonts, divs. Everything. Does this make an...

Get IE6 quirks-mode position:absolute rendering in standards mode

I have an absolutely-positioned navigation on my menu that is sent off to the left side.* #menu { position: absolute; display:inline-block; /* I can hasLayout? */ top: 0; left: 0; width: 265px; height: 100%; background: #ffc; } html>body #menu { height: auto; min-height: 100%; } It should look some...

Difference between Class vs CSSClass in ASP.Net CSS + CSS syntax question...

What is the difference between: <asp:GridView CssClass="someclass" and <table class="someclass"> And how does it relate to how one defines CSS? For example, using CssClass, one can (I think) write CSS like so: .someclass {font-family:"arial"; background-color:#FFFFFF; width: 100%; font-size: small;} ...

DIV and TABLE widths not rendering properly using CSS

With this html: <div class="sectionheading">User Information</div> <table id="UserInputTable" class="xInputTable"> ...and this CSS: .sectionheading{width:100%; font-size:20px; font-weight:bold; background-color:#28BA87; color:white; text-align:center; border-style:solid; border-width:thin; border-color:Black; border-collapse:separa...

Browser Scrollbar shift

When you go to page on my website where there is extra content, the scrollbar appears on the right, but it has a notiable shift to the left for my content. You notice this by clicking home and then hosting and back again on my site (www.ipalaces.org) How can I account for the browser scrollbar on my pages? Can I make it so the scrollba...

CSS horizontal menu - equally spaced?

Hi all, I guess this is a common question but haven't found any good answer about it, and questions around here are not exactly my case. Also, this is my first question so please don't be too harsh on me. lol I have a standard CSS menu, made with UL and LI tags. I need them to get to cover the whole page, horizontally (not my real case...

How can I scale an image to 100% the width of the page in Safari?

I'd like to scale a large image down to the width of the user's screen. I don't want to set width: 100% because it distorts the image. Can I use CSS transforms for this? ThanksMike ...

What does an Asterisk (*) do in CSS?

I found this CSS code and I ran it to see what it does and it outlined EVERY element on the page, Can someone explain what the Asterisk * does in CSS? <style> * { outline: 2px dotted red } * * { outline: 2px dotted green } * * * { outline: 2px dotted orange } * * * * { outline: 2px dotted blue } * * * * * { outline: 1px solid red } * ...

What are the best way to know which CSS elements are supported by all browsers?

Anyone know where I can find it? ...

How to view the source of currently displayed html page(dynamically) than the original page?

G'day everybody, As an avid firefox user, I use plugins like stylish and greasemonkey to modify default styles of pages. However the view->page source option of the browser shows only the page in its original form and not the current form after it is manipulated by a script or a style. Is there any way i can view the source o...

strikeout the entire row in a table??

Hi, is there a way to strike out entire row (line-throuth the whole cell, not just a text).. i have tried applying the text-decoration:line-through; in both the column & row level.. but this applies the strikeoute style only on text, not the entire cell.. anybody got a idea how to achieve this.. cheers Ramesh Vel ...

What are the main differences between browsers which web developers should be noted?

While making CSS for the website it is painful when sometimes it works on some browsers and some don't. I wonder if there any place I can find the existing problem which has been noted with experience developers. So I can have a list of noted problem while developing. What are the tricks? Where Can I find it ? How to solve it if possib...