0
votes
3answers
34 views
How to convert upper to lower and replace spaces with dashes?
I want to convert good bunch of url text.
from
CUSTOMER FAQS
HOW wE can HELP
PLANNING YOUR BUDGET
CUSTOMER CASE STUDIES
TENANT DISPUTES
EXIT STRATEGIES
USEFUL dOCUMENTS
USEFUL lINKS
to
…
1
vote
8answers
71 views
Is it good to put <p> inside <td> to put content text?
Which is more semantic and valid?
<td>
<p>
content text
</p>
</td>
or
<td>
content text
</td>
1
vote
5answers
25 views
How to know the correct css selector or group of selector for any html element quickly?
How to know the correct selector/group of selector for any html element quickly? I'm working on very long bloated html code. and want to apply css on some specfic areas but it's taking to so much time …
0
votes
7answers
57 views
Jquery not selector problem
First of all thank you for your consideration.
I have an html document with a wrapper (container) inside. I want to make it so that when somebody clicks on the body section of the page, they are …
1
vote
1answer
35 views
Calculating the specificity of a selector(CSS)
Hi
I know that to calculate the specificity of a selector we use three numbers, where first number on the left is number of IDs, second number represents number of classes, pseudo-classes and …
3
votes
4answers
41 views
Problem understanding more complex examples of Descendant selectors (CSS)
Hi
1)
I somewhat understand descendant selectors, but the more complex examples are giving me some troubles. For example:
#content .alternative p
Should this rule apply to p elements that are …
0
votes
2answers
45 views
Javascript anchor navigation
I am creating a website with the "anchor navigation" like used with facebook and google mail. I have got it working but not fully. When I load the page with something like #contact it won't load it in …
0
votes
1answer
15 views
UTF8 encoded XHTML content in JSP
Hi,
I am trying to display XHTML content in a JSP page. The encoding is UTF8. The jsp page calls a method in a java class and the method returns the xhtml content. Basically this is what I have in my …
0
votes
0answers
39 views
How to seperate used css selectors from a site’s css file?
Is there a way to collect separately used css selectors in a file from a web page?
for example : http://stackoverflow.com/
I know about "dust me selectors" plugin of firefox but i want to collect …
0
votes
3answers
33 views
should we use frameset doctype if we use iframe?
Why iframe declared as non-standard thing? It has usefulness.
Is it allow to use in xhtml 1.1 ? or should we use frameset doctype if we use iframe?
3
votes
5answers
156 views
<strong> vs <em>?
What is the difference? both emphasize the text . <em> shows text as italics, is this the only difference?
0
votes
4answers
45 views
Does the percentage value refer to the width of the containing block?
Hi,
We can set the padding and margin properties of an element E using either pixels or percentages.
A) I assume that when we use percentages, the percentage value refers to the width of the …
0
votes
0answers
28 views
Will margin and padding properties retain their specified values if…
Hi
Assume width of a viewport (display area of a browser) is 800px and that margin and padding properties of some html element E are set to values of 200px and 300px.
a) If we resize the …
0
votes
1answer
15 views
Is <dl> element from XHTML 1.0 adapted to display a resource tag list or a subscription feed ?
I wonder if the <dl> element from XHTML 1.0 is semantically valid to display a resource tag list, like that:
<dl>
<dt>Tags</dt>
<dd><a …
1
vote
3answers
52 views
What is the best way to get clean semantic XHTML from MS word documents?
Some days ago I received a rather lengthy and somewhat elaborate MS Word document, which I was asked to convert to HTML for uploading to a 3rd party’s website. My first instinct was to save the Word …
