CSS Example: Border-Top
x
<title>Example</title>
<style>
.animatedBox {
width: 200px;
text-align: center;
font: 24px sans-serif;
border: 1px solid yellowgreen;
animation: myAnimation 1s ease 1s 3 alternate forwards;
}
@keyframes myAnimation {
100% {
border-top: 10px solid orange;
}
}
</style>
<div class="animatedBox">Animated box</div>
In this example, the left side provides the code used to render the output in the right side.
Feel free to copy and paste the code into your own project and modify as you wish.
About CSS
CSS stands for Cascading Style Sheets. It's used to add styles to web pages. It's typically added to HTML pages using the <link>
tag, so that we can have the CSS in a separate file to the HTML file. However, we also have the option of embedding the CSS in the actual HTML file by using the <style>
HTML tag, or by using the style
attribute within an individual HTML tag.