HTML (HyperText Markup Language) is the principal markup language used for structuring web pages and formatting content. The most recent iteration of HTML is HTML5.

learn more… | top users | synonyms (1)

14
votes
7answers
472 views
+300

How to fetch the background of DIV on a bottom layer with exact position using jQuery and CSS

I'm looking to make a page that has a background gradient that changes color every few seconds and blends between transitions. Now I want to apply this effect on the to the upper elements that are ...
1
vote
4answers
132 views
+50

How do I deal with the issue of my divs being distorted greatly when zoomed in?

There are two issues in the code I've written that I'm unsure how to resolve: How the page looks on Google Chrome That my two columns of divs do not scale together as I zoom in and out. If I ...
5
votes
2answers
185 views
+100

Different page orientation for printing HTML

Code: I try to make the following simple HTML page work: <html> <head> <style type="text/css"> @media print { @page port { size: portrait; } ...
2
votes
2answers
157 views
+100

Converting text from HTML to MS Word

I'm trying to convert HTML (From CK Editor) to MS Word: wordDoc = new ActiveXObject("Word.Application"); But the result shows all HTML tags (like span, strong) in the Word document. How can I ...
3
votes
3answers
221 views
+50

why does $_GET not work in header-function?

I already have a question with this issue but a further question belonging $_GET and header-function: I have a multidimensional language site. When calling a page that does not exist, .htaccess will ...
2
votes
2answers
53 views
+50

Full screen HTML on iOS device goes under status bar

When I use the full screen mode of Safari on an iOS device, my website's header is under the status bar. I am using jQuery Mobile but I also had the same issue using Twitter Boostrap. Here is my code: ...
1
vote
2answers
36 views
+50

Extra padding on TextView with HTML contents

I have this TextView: <TextView android:id="@+id/issue_journal_item_notes" android:layout_width="match_parent" android:layout_height="wrap_content" ...
0
votes
2answers
76 views
+50

Phonegap How To Reuse/Include HTML Page?

I know in server side,this can be done easily by the server side script,but PhoneGap development focus is on the local copy.So how could I reuse/include a HTML page into another HTML page (without ...
-1
votes
1answer
27 views
+50

HyperSpace from codepen doesn't work for me when I copy it

HyperSpace is neat demo that (I think) only uses css. But when I copy the html and css to my directory, it doesn't work. Q: What am I missing?
4
votes
4answers
114 views
+50

How to get a div to stretch right down to a fixed footer

I wish the two sections of my design (see attached image) to extend the whole height of the page. I have tried to create a Fiddle but it just won't work in there, so I've put up a link here to demo ...
0
votes
2answers
38 views
+50

How to set background color width of dropdown menu items in IE7?

I have the following navigation bar: http://jsfiddle.net/jajq3/embedded/result/ For posterity, this is the structure: <div id="navBar"> <ul style="float: left; padding-left: 5px;"> ...
0
votes
1answer
54 views
+50

Border expanding table but cutting off background image

I have created a fiddle of my problem in a fiddle here: http://jsfiddle.net/tpSjf/ I'm adding a border on the table, but only for the rows, now the border expands the width of the table by 2px so ...
2
votes
0answers
45 views
+50

Css -webkit-backface-visibility shows white dots on rotated div

I have a DIV and it is rotated by: transform: rotate(-5deg); -ms-transform: rotate(-5deg); -webkit-transform: rotate(-5deg); It's good there, but when I add -webkit-backface-visibility: hidden; ...