0
votes
1answer
52 views
howto insert an image from client side into an editor?
like an "insert" menu,by which to insert an image into the editor,
using javascript,I've no idea what's the solution at all,
should be in 2 steps:
1.let user choose image(th …
2
votes
6answers
734 views
How to use ‘hover’ in CSS
I used the code below in order to fulfill this target:
When mouse hover on the anchor, the underline comes out,
but it failed to work,
<a class="hover">cli …
0
votes
3answers
357 views
how to append a css class to an element by javascript?
suppose id is known,
so the element can be specified by document.getElementById(element_id);
but I don't know if there is a built-in function that can be used to append a css class …
1
vote
4answers
114 views
Is there any shortcut to make css positioning programmatic instead of declarative?
How complicated will it be to implement from scratch?
Mainly for layout issues.
The reason I want to make it declarative is that I hope to encapsulate it into a javascript class,so …
0
votes
9answers
717 views
how to make round-corner layout by pure css and html?
In a compatible and the most convenient way?
…
0
votes
6answers
236 views
1
vote
7answers
285 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
605 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
7answers
262 views
about background attribute in css
background:#777777 none repeat scroll 0 0;
the 5 attributes it includes are background-color,background-image,background-repeat,background-attachment and background-position.
But I …
0
votes
4answers
69 views
why everything gone with display:block ?
This is OK:
<html>
<head>
<title>tabs</title>
<style>
li {
display:inline;
margin:0 90px;
background:#777777 none repeat scroll 0 0;
}
li …
2
votes
7answers
116 views
when to leave space ,when not in CSS?
This is ok(without space):
li.highlight{
background:#FF9900 none repeat scroll 0 0;
}
This will not work(with space):
li .highlight{
backgr …
0
votes
4answers
213 views
padding not even in IE
If you paste the following code into a test.html and browse with firefox,it's ok.
But if you browse with IE,you can see that there are more space to the right of <a> element.: …
0
votes
3answers
91 views
background attribute in CSS
background:#777777 none repeat scroll 0 0;
the 5 attributes it includes are background-color,background-image,background-repeat,background-attachment and background-positi …
2
votes
9answers
177 views
What is the purpose of line-height, and what does white-space:nowrap do?
what's line-height supposed to do since there is already an attribute called font-size?
And what does it mean when we specify something like:
white …
1
vote
6answers
462 views
Why doesn’t a:hover work on an anchor without an href attribute?
In my application, I can't get the a:hover css style to work when my anchor tag doesn't have an href attribute.
Is there any reason for this?
…
