All Questions
2 questions
0
votes
0
answers
36
views
How to fit properly a div with border inside a parent div with border?
class CardsDeck extends React.Component {
render() {
const cards = [{ id: 1 }, { id: 2 }];
return (
<div className="App">
<div className="container">
...
-3
votes
3
answers
47
views
How can I change my page HTML in 3 Blocks?
Hey I want to style my HTML like this:
I currently have this:
<app-list-employees></app-list-employees>
<app-book-employee></app-book-employee>
<app-calendar-books></...