Answer to Question #323952 in HTML/JavaScript Web Application for lucky

Question #323952

CSS Border Properties

The goal of this coding exam is to quickly get you off the ground with the CSS Border Properties.

Use the below reference image.


1
Expert's answer
2022-04-06T05:07:21-0400
<!DOCTYPE html>
<html> 
<head>
<title>Hello html</title>
</head>
<body>
    <button class="btn btn-primary" type="button">
        Change border...
    </button>
    <p class="description">Hello Css</p>
</body>


<script src="https://code.jquery.com/jquery-3.5.0.js"></script>
<script>


    $('.btn').click(function(){
        $('.description').css('border-color', 'blue')
    });
    </script>
    <style>
        .description {
    border: 1px red solid;
}
    </style>
</html>

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS