Top "Html" questions

HTML (HyperText Markup Language) is the markup language for creating web pages and other information to be displayed in a web browser.

Make absolute positioned div expand parent div height

As you can see in the CSS below, I want child2 to position itself before child1. This is because the …

html css position master-pages parent-child
CSS table td width - fixed, not flexible

I have a table and I want to set a fixed width of 30px on the td's. the problem is …

html css html-table
CSS: How to align vertically a "label" and "input" inside a "div"?

Consider the following code: HTML: <div> <label for='name'>Name:</label> <input type=…

css html vertical-alignment
Inputting a default image in case the src attribute of an html <img> is not valid?

Is there any way to render a default image in an HTML <img> tag, in case the src …

html image
Bootstrap Dropdown with Hover

OK, so what I need is fairly straightforward. I have set up a navbar with some dropdown menus in it (…

javascript jquery html css twitter-bootstrap
When do items in HTML5 local storage expire?

For how long is data stored in localStorage (as part of DOM Storage in HTML5) available? Can I set an …

javascript html local-storage
How to make Scrollable Table with fixed headers using CSS

I want to make header of my table fixed.Table is present inside the scrollable div.Please see my code …

html css html-table
How to customize <input type="file">?

Is it possible to change the appearance of <input type="file">?

html css file-upload input
onchange event on input type=range is not triggering in firefox while dragging

When I played with <input type="range">, Firefox triggers an onchange event only if we drop the slider …

javascript html firefox input onchange
Converting user input string to regular expression

I am designing a regular expression tester in HTML and JavaScript. The user will enter a regex, a string, and …

javascript html regex