Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Front End Scripts Articles - Page 9 of 60
90 Views
To set the style of border, use the border-style property. The border-style property allows you to select one of the following styles of the border:none: No bordersolid: Border is a single solid line.dotted: Border is a series of dots.dashed: Border is a series of short lines.double: Border is two solid lines.groove: Border looks as though it is carved into the page.ridge: Border looks the opposite of groove.inset: Border makes the box look like it is embedded in the page.outset: Border makes the box look like it is coming out of the canvas.hidden: Same as none, except in terms of border-conflict resolution for table elements.ExampleYou can try to ... Read More
72 Views
The margin-top specifies the top margin of an element. It can have a value in length, % or auto.ExampleYou can try to run the following code to set the top margin This is a paragraph with a specified top margin This is another paragraph with a specified top margin in percent
62 Views
The border-bottom-color property changes the color of the bottom border.ExampleYou can try to run the following code to implement the border-bottom-color property: p.demo { border:3px solid; border-bottom-color:#FF0000; } Example showing border top color property



