How do I move the list bullet to the left/right?

How do I move the list bullet to the left/right?
CSS1 has no properties for setting margins or padding around the bullet of a list item and in most cases the position of the bullet is browser-dependent. This is especially true since most browsers disagreed on whether a bullet is found within the margin or padding [...]

What is the percentage value in ‘font-size’ relative to?

What is the percentage value in ‘font-size’ relative to?
It is relative to the parent element’s font-size. For example, if the style sheet says:
H1 {font-size: 20pt;}
SUP {font-size: 80%;}
…then a inside an will have a font-size of 80% times 20pt, or 16pt.
What is wrong with font-family: “Verdana, Arial, Helvetica”?
The quotes. This is actually a list [...]

Border around a table? ,How do you target a certain browser?

Border around a table?
Try the following:
.tblboda {
border-width: 1px;
border-style: solid;
border-color: #CCCCCC;
}
/*color, thickness and style can be altered*/
You put this style declaration either in
an external stylesheet, or you can stuff it in
the

section, like:

(here you can place your styles)

and apply it to the table as follows:

Content text and more content

That should give you a grey thin border [...]

What is value? ,What is initial value?

What is value?
Value is a ‘physical’ characteristic of the property. Property declares what should be formatted, e.g. FONT while value suggests how the property should be formatted, e.g. 12pt. By setting the value 12pt to the property FONT it is suggested that the formatted text be displayed in a 12 point font. There must always [...]

What is “Microsoft Intermediate Language” (MSIL)?

What is “Microsoft Intermediate Language” (MSIL)?
A .NET programming language (C#, VB.NET, J# etc.) does not compile into executable code; instead it compiles into an intermediate code called Microsoft Intermediate Language (MSIL). As a programmer one need not worry about the syntax of MSIL – since our source code in automatically converted to MSIL. The MSIL [...]

What security measures exist for .NET Remoting in System.Runtime.Remoting?

What security measures exist for .NET Remoting in System.Runtime.Remoting?

None. Security should be taken care of at the application level. Cryptography and other security techniques can be applied at application or server level.
What is a formatter?
A formatter is an object that is responsible for encoding and serializing data into messages on one end, and deserializing and [...]

What is .NET? ,How many languages .NET is supporting now?

What is .NET?
.NET is essentially a framework for software development. It is similar in nature to any other software development framework (J2EE etc) in that it provides a set of runtime containers/capabilities, and a rich set of pre-built functionality in the form of class libraries and APIs
The .NET Framework is an environment for building, deploying, [...]

How to getting values from cookies to set widgets? ,How to change style on an element?

How to getting values from cookies to set widgets?

function getCookieData(labelName) {
//from Danny Goodman
var labelLen = labelName.length;
// read cookie property only once for speed
var cookieData = document.cookie;
var cLen = cookieData.length;
var i = 0;
var cEnd;
while (i < cLen) {
var j = i + labelLen;
if (cookieData.substring(i,j) == labelName) {
cEnd = cookieData.indexOf(";",j);
if (cEnd == -1) {
cEnd = cookieData.length;
}
return unescape(cookieData.substring(j+1, [...]

How to reload the current page ? ,how to force a page to go to another page using JavaScript ?

How to reload the current page ?
window.location.reload(true);
how to force a page to go to another page using JavaScript ?

How to convert a string to a number using JavaScript?
You can use the parseInt() and parseFloat() methods. Notice that extra letters following a valid number are ignored, which is kinda wierd but convenient at times.
parseInt(”100″) ==> 100
parseFloat(”98.6″) [...]

eval()? , What does break and continue statements do?

eval()?
The eval() method is incredibly powerful allowing you to execute snippets of code during execution.

<script type="text/javascript">
var USA_Texas_Austin = "521,289";
document.write("Population is "+eval("USA_"+"Texas_"+"Austin"));
</script>

This produces
Population is 521,289
What does break and continue statements do?
Continue statement continues the current loop (if label not specified) in a new iteration whereas break statement exits the current loop.
How to create a function using [...]