Hi all,
Can anybody tell me why this piece of code works,
and why this one does not?
In the first case, I get the borders I want, in the second one I do not.
What do I miss?
Thanks,
vlad
Can anybody tell me why this piece of code works,
Code:
<head>
<style>
p.mBorder
{
border-color: #000000;
border-width: medium;
border-style: solid;
}
</style>
</head>
<p class = "mBorder">Test border</p>
and why this one does not?
Code:
<head>
<style>
mBorder
{
border-color: #000000;
border-width: medium;
border-style: solid;
}
</style>
</head>
<span class = "mBorder">Test border</span>
In the first case, I get the borders I want, in the second one I do not.
What do I miss?
Thanks,
vlad