Tagged Questions
989
votes
35answers
438k views
RegEx match open tags except XHTML self-contained tags
I need to match all of these opening tags:
<p>
<a href="foo">
But not these:
<br />
<hr class="foo" />
I came up with this and wanted to make sure I've got it right. I am ...
638
votes
90answers
75k views
Why not use tables for layout in HTML? [closed]
It seems to be the general opinion that tables should not be used for layout in HTML.
Why?
I have never (or rarely to be honest) seen good arguments for this. The usual answers are:
It's good to ...
431
votes
6answers
10k views
How does this CSS triangle shape work?
There're plenty of different CSS shapes over at http://css-tricks.com/examples/ShapesOfCSS/
and I'm particularly puzzled with a triangle:
#triangle-up {
width: 0;
height: 0;
...
347
votes
33answers
242k views
Href for JavaScript links: “#” or “javascript:void(0)”?
When building a link that has the sole purpose to run JavaScript code, is it better to
<a href="#" onclick="myJsFunc();">Link</a>
or
<a href="javascript:void(0)" ...
305
votes
9answers
188k views
How to set cellpadding & cellspacing in CSS?
How can I control cellpadding and cellspacing in a CSS stylesheet to obtain the same effect as when putting the attributes on the table tag?
287
votes
13answers
20k views
How to Manage CSS Explosion
I have been heavily relying on CSS for a website that I am working on (currently, everything is done as property values within each tag on the website and I'm trying to get away from that to make ...
240
votes
8answers
7k views
Is the recommendation to include CSS before JavaScript invalid?
In countless places online I have seen the recommendation to include CSS prior to JavaScript. The reasoning is generally, of this form:
When it comes to ordering your CSS and JavaScript, you want ...
236
votes
14answers
89k views
css rule to disable text selection highlighting
For anchors that act like buttons (for example the Question, Tags, User, etc at the top of the SO page) or tabs, is there a CSS standard way to disable the highlighting effect if the user accidentally ...
231
votes
22answers
131k views
How to align checkboxes and their labels consistently cross-browsers
This is one of the minor CSS problems that plagues me constantly. How do folks around StackOverflow vertically align checkboxes and their labels consistently cross-browser? Whenever I align them ...
213
votes
14answers
83k views
Comparison between Corona, Phonegap, Titanium [closed]
I am a web developer and I want to move my web products to iPhone. One of the products is like Google Maps: show map on the phone screen, you can drag or resize the map and view some information that ...
208
votes
3answers
50k views
Change an input's HTML5 placeholder color with CSS
Chrome supports the placeholder attribute on input[type=text] elements (others probably do too).
But the following CSS doesn't do diddly squat to the placeholder's value:
<style>
...
200
votes
15answers
209k views
CSS: semi-transparent background, but not text
Is there a way in CSS to make the background of an element semi-transparent, but still have the text of the element non-transparent? (Without separating the text and background in two elements ...
197
votes
8answers
20k views
Why don't self-closing script tags work?
What is the reason browsers do not correctly recognize:
<script src="foobar.js" /> // self-closing script tag
Only this is recognized:
<script src="foobar.js"></script>
Is it ...
194
votes
8answers
167k views
jQuery document.createElement equivalent?
I'm refactoring some old JavaScript code and there's a lot of DOM manipulation going on.
var d = document;
var odv = d.createElement("div");
odv.style.display = "none";
this.OuterDiv = odv;
var t = ...
183
votes
16answers
40k views
When to use IMG vs. CSS background-image?
In what situations is it more appropriate to use an HTML IMG tag to display an image, as opposed to a CSS background-image, and vice-versa?
Single-reason answers are welcome, but I'm hoping ...
178
votes
6answers
200k views
How to center DIV in DIV?
I'd like to ask you if anyone know how to horizontally center DIV in DIV with CSS ( if it's possible at all ). Outer DIV has 100%:
<div id="outer" style="width:100%">
<div ...
177
votes
12answers
274k views
Change an element's CSS class with JavaScript
How can I change a CSS class of an HTML element in response to an onClick event using JavaScript?
174
votes
16answers
64k views
Best css reset
I'm looking for a css reset kit, but I never used one before.
So which kits its out there, and whats your experiences regarding these kits?
And, is its any different between these kits, something you ...
159
votes
20answers
4k views
Are fluid websites worth making anymore?
I'm making a website now and I am trying to decide if I should make it fluid or not. Fixed width websites are much easier to make and also much easier to make them appear consistent.
To be honest ...
159
votes
9answers
96k views
How do I vertically align text next to an image with CSS?
Why won't "vertical-align: middle" work? And yet, "vertical-align: top" does work.
<div>
<img style="width:30px;height:30px">
<span style="vertical-align:middle">Doesn't ...
155
votes
14answers
32k views
What are valid values for the id attribute in HTML?
When creating the id attributes for HTML elements, what rules are there for the value?
152
votes
20answers
104k views
Simulators/emulators for mobile browser testing?
I'm doing development of a web application aimed at mobile devices. What software can I use to simulate/emulate mobile browser environments?
I'm specifically looking for a way to test on Mobile ...
149
votes
30answers
21k views
What is the best way to create rounded corners using CSS?
What is the best way to create rounded corners using CSS?
146
votes
17answers
22k views
Frame Buster Buster … buster code needed
Let's say you don't want other sites to "frame" your site in an <iframe>:
<iframe src="http://yourwebsite.com"></iframe>
So you insert anti-framing, frame busting JavaScript into ...
142
votes
15answers
47k views
How do you disable browser Autocomplete on web form field / input tag?
How do you disable Autocomplete in the major browsers for a specific input (or form field)?
140
votes
13answers
49k views
When is a CDATA section necessary within a script tag?
Are CDATA tags ever necessary in script tags and if so when?
In other words, when and where is this:
<script type="text/javascript">
//<![CDATA[
...code...
//]]>
</script>
...
139
votes
12answers
99k views
Using jQuery to center a DIV on the screen
How do I go about setting a <div> in the center of the screen using jQuery?
138
votes
7answers
40k views
What characters are valid in CSS class names?
What characters/symbols are allowed within CSS class names? Characters such as:
~ ! @ $ % ^ & * ( ) _ + - = , . / ' ; : " ? > < [ ] \ { } | ` #
I know a lot of these are invalid, but ...
136
votes
16answers
16k views
Is it OK to use a CSS reset stylesheet? [closed]
I'm starting a new web project and I was planning to use a CSS reset stylesheet to have the same starting point styles in all major browsers. Have you used CSS resets? Would you recommend it?
...
136
votes
16answers
106k views
What is the best HTML editor for Eclipse?
I was amazed to find out that apparently Eclipse doesn't come with a decent HTML editor by default (it opened my .html file in some kind of browser view and apparently tried to render it). And the ...
132
votes
10answers
34k views
Any reason not to start using the HTML 5 doctype? [closed]
<!DOCTYPE html>
It is supposed to be backwards compatible with HTML4 and XHTML. John Resig posted about some of the benefits.
As long as we don't use any of the new and not supported yet ...
131
votes
9answers
8k views
Can you provide some examples of why it is hard to parse XML and HTML with a regex?
One mistake I see people making over and over again is trying to parse XML or HTML with a regex. Here are a few of the reasons parsing XML and HTML is hard:
People want to treat a file as a sequence ...
131
votes
19answers
32k views
What is an elegant way to force browsers to reload cached CSS/JS files?
I have noticed that some browsers (in particular, Firefox and Opera) are very zealous in using cached copies of .css and .js files, even between browser sessions. This leads to a problem when you ...
131
votes
12answers
94k views
Remove border from IFrame
How do I remove the border from an IFrame embedded in my web app? An example of the IFrame is:
<IFRAME src="myURL" width="300" height="300">Browser not compatible. </IFRAME>
I would ...
130
votes
17answers
32k views
How can I determine a web user's time zone?
Is there a standard way for a Web Server to determine what Time zone offset a user is in?
From an HTTP header or part of the user-agent description,perhaps?
128
votes
4answers
32k views
Are there hosted jQuery UI themes anywhere? [closed]
Possible Duplicate:
Downloading jQuery CSS from Google's CDN
I'm using Google-hosted jQuery and jQueryUI, but I'm wondering if there are hosted jQueryUI themes anywhere? I'd like to ...
127
votes
19answers
90k views
Convert HTML + CSS to PDF with PHP?
Ok, I'm now banging my head against a brick wall with this one.
I have an HTML (not XHTML) document that renders fine in Firefox 3 and IE 7. It uses fairly basic CSS to style it and renders fine in ...
125
votes
11answers
74k views
jQuery Set Cursor Position in Text Area
How do you set the cursor position in a text field using jQuery? I've got a text field with content, and I want the users cursor to be positioned at a certain offset when they focus on the field. ...
122
votes
27answers
74k views
How to detect if JavaScript is disabled?
There was a post this morning asking about: How many people disable javascript. Then I began to wonder what techniques might be used to determine if the user has it disabled. Anyone know of some ...
120
votes
5answers
10k views
Convert RGB-->RGBA
I have a hex color, e.g. #F4F8FB (or rgb(244, 248, 251)) that I want converted into an as-transparent-as-possible rgba color (when displayed over white). Make sense? I'm looking for an algorithm, or ...
120
votes
13answers
99k views
Invoking javascript in iframe from parent page
Basically, I have an iframe embedded in a page and the iframe has some javascript routines I need to invoke from the parent page.
Now the opposite is quite simple as you only need to call ...
115
votes
2answers
9k views
How do Google+ +1 widgets break out of their iframe?
Somehow, hovering over a Google+ plus-one widget can introduce a tooltip-type deal that is clearly larger than the <iframe> element in which it is contained. I’ve inspected the DOM to confirm ...
115
votes
20answers
22k views
Any recommendations for a CSS minifier?
Any recommendations for a CSS minifier?
I’ll be rooting around Google and trying some out, but I suspected that the smart, proficient and curiously handsome StackOverflow community might have already ...
115
votes
18answers
49k views
How do you handle multiple submit buttons in ASP.NET MVC Framework?
Is there some easy way to handle multiple submit buttons from the same form? Example:
<% Html.BeginForm("MyAction", "MyController", FormMethod.Post); %>
<input type="submit" value="Send" ...
115
votes
0answers
57k views
Looking for C# HTML parser [closed]
Possible Duplicate:
What is the best way to parse html in C#?
I would like to extract the structure of the HTML document - so the tags are more important than the content. Ideally, it ...
112
votes
37answers
14k views
Hidden features of HTML [closed]
HTML being the most widely used language (at least as a markup language) has not gotten its due credit.
Considering that it has been around for so many years, things like the FORM / INPUT controls ...
112
votes
3answers
32k views
Downloading jQuery CSS from Google's CDN
I am planning on using Google to download the jQuery lib for both UI and Core. My question is, do they allow me to download the CSS for it or should I have to host it myself?
Also if I use Google to ...
112
votes
9answers
51k views
CSS 100% height with padding/margin
This has been driving me crazy for a couple of days now, but in reality it's a problem that I've hit off and on for the last few years: With HTML/CSS how can I make an element that has a width and/or ...
112
votes
5answers
30k views
<button> vs. <input type=“button” />. Which to use?
When looking at most sites (including SO), most of them use:
<input type="button" />
instead of:
<button></button>
What are the main differences between the two, if any?
Are ...
109
votes
12answers
194k views
Trigger a button click with JavaScript on the Enter key in a text box
I have one text input and one button (see below). How can I use JavaScript to trigger the button's click event when the Enter key is pressed inside the text box?
There is already a different submit ...