Lena Stanley posted: " The CSS border-right property is a shorthand property for: border-right-width border-right-style border-right-color Syntax: border-right: border-width border-style border-color; border-right-width - settles the width of an element's"
<!DOCTYPE html> <html> <head> <style> h4 { border-right: 5px dotted #2a9d8f; } p { border-right: 4px solid #e76f51; } div { border-right: double; } </style> </head> <body> <h4>A heading with a dotted #2a9d8f right border.</h4> <p>A paragraph with a solid #e76f51 right border.</p> <div>A div element with a double right border.</div> </body> </html>
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.