The 'client' is used in client-server environment to refer to the program the person uses to run the application. A client-server environment is one in which multiple computers share information such as entering information into a database. The 'client' is the application used to enter the information, and the 'server' is the application used to store the information.
Continue Reading...
Showing posts with label CSS. Show all posts
Showing posts with label CSS. Show all posts
What is a Client?
Labels:
ADO.Net
,
ASP dot Net
,
C Sharp
,
Computer details
,
CSS
,
DotNet
,
HR
,
PHP
,
SharePoint
,
Tips


All CSS Border Properties and their descriptions
- border: Sets all the border properties in one declaration
- border-bottom: Sets all the bottom border properties in one declaration
- border-bottom-color: Sets the color of the bottom border
- border-bottom-style: Sets the style of the bottom border
- border-bottom-width: Sets the width of the bottom border
- border-color: Sets the color of the four borders
- border-left: Sets all the left border properties in one declaration
- border-left-color: Sets the color of the left border
- border-left-style: Sets the style of the left border
- border-left-width: Sets the width of the left border
- border-right: Sets all the right border properties in one declaration
- border-right-color: Sets the color of the right border
- border-right-style: Sets the style of the right border
- border-right-width: Sets the width of the right border
- border-style:Sets the style of the four borders
- border-top: Sets all the top border properties in one declaration
- border-top-color: Sets the color of the top border
- border-top-style: Sets the style of the top border
- border-top-width: Sets the width of the top border
- border-width: Sets the width of the four borders
CSS Border - Shorthand property
There are many properties to consider when dealing with borders. To shorten the code, it is also possible to specify all the border properties in one property. This is called a shorthand property.The shorthand property for the border properties is "border":
Example
When using the border property, the order of the values are:
It does not matter if one of the values above are missing (although, border-style is required), as long as the rest are in the specified order.
Continue Reading...
Example
border:5px solid red;
When using the border property, the order of the values are:
- border-width
- border-style
- border-color
It does not matter if one of the values above are missing (although, border-style is required), as long as the rest are in the specified order.
CSS Border Color property
The border-color property is used to set the color of the border. The color can be set by:
You can also set the border color to "transparent".
Note: The "border-color" property does not work if it is used alone. Use the "border-style" property to set the borders first.
Example
Continue Reading...
- name - specify a color name, like "red"
- RGB - specify a RGB value, like "rgb(255,0,0)"
- Hex - specify a hex value, like "#ff0000"
You can also set the border color to "transparent".
Note: The "border-color" property does not work if it is used alone. Use the "border-style" property to set the borders first.
Example
p.one
{
border-style:solid;
border-color:red;
}
p.two
{
border-style:solid;
border-color:#98bf21;
}
{
border-style:solid;
border-color:red;
}
p.two
{
border-style:solid;
border-color:#98bf21;
}
Subscribe to:
Posts
(
Atom
)