How would you create a text paragraph that is placed within a card with rounded corners?
Experience Level: Junior
Tags: CSS
Answer
<html>
<head>
...
</head>
<body>
<p id="Lorem Ipsum is simply dummy text of the printing and typesetting industry."</p>
</body>
</html>
#p {
border: solid 1px #426cad;
border-radius: 5px;
}
Related CSS job interview questions
What is the Icon font?
CSS JuniorHow did you handle multiple borders?
CSS JuniorWhat is Foundation?
HTML JuniorWhat is CSS framework?
HTML JuniorHow do you hide some element using CSS?
CSS Junior