0
votes
1answer
86 views
Is there a compatible way to write href?
for example,in file test.php:
<a href="someting/?start=1">go</a>;
so that no matter where this test.php is,
can be in Document_Root/Test/ direc …
0
votes
1answer
83 views
how to show image that are stored above Document_Root
I set the src attribute of img the way below but was not working :
src="/../files/filenamee"
the image is not shown.
How to do it correctly?
…
0
votes
8answers
154 views
how to make tabbed view in html?
When click on tab A,show content for tab A,
click on tab B,show content for tab B,and so on.
What's the most simple and compatible way of constructing this html snippet?
Sorry to up …
0
votes
9answers
704 views
how to make round-corner layout by pure css and html?
In a compatible and the most convenient way?
…
0
votes
6answers
231 views
0
votes
1answer
36 views
Any way to implement web UI in a modualized method?
Say,divide the who page into multiple subparts,each subpart is composed of several elements.
After each subpart is finished,the whole web UI is also done.
Is this kinda doable or pl …
3
votes
9answers
516 views
1
vote
7answers
278 views
How can I make <li> elements flow left-to-right instead of top-to-bottom?
Here are my <li> elements. I want them to appear left-to-right instead of top-to-bottom.
<div class="nav">
<ul>
<li><a href="test">t …
2
votes
4answers
576 views
how to implement a drag-and-drop div from scratch?
It should be a combination of CSS and Javascript,
The main jobs to do should be:
Make it on top of all other elements (which property to specity?)
Catch the event it …
0
votes
2answers
34 views
how to control which option to be selected in SELECT control?
What I tried is by adding selected,but not working:
<select>
<option value="-1" selected>--</option>
<option value="0">femail</option>
…
2
votes
3answers
132 views
What does font size -2 mean here?
I see this from source code of a web site:
<font size="-2">@2009 </font>
What does it mean when size is negative?
…
2
votes
4answers
117 views
-1
votes
5answers
141 views
how to achieve the effect of blur everything on the page and pop up a dialog box?
I'm talking about html,web page
…
1
vote
3answers
70 views
failed to change page character set in meta
Code as follows:
<meta http-equiv="Content-type" content="text/html; charset=utf8" />
But when I browse the page using IE, it still uses its default charset, …
6
votes
5answers
612 views
What does “javascript:void(0)” mean?
<a href="javascript:void(0)" id="loginlink">login</a>
I've seen such hrefs many times, but I don't know what exactly that means.
…
