plis check for the mobile view
the only thing i cant did was to put my button at the end of the flex-box container any suggestion? i had to do it with margin :(
plis check for the mobile view
the only thing i cant did was to put my button at the end of the flex-box container any suggestion? i had to do it with margin :(
Hi,
You can wrap card-title, image and p in single div and use justify-content: space-between
property to flex items and avoid margin.
https://developer.mozilla.org/en-US/docs/Web/CSS/justify-content
Hope this helps :)
Please, comment what you think of the code and how I can improve it.
Hi, The layout looks great. But there is one issue regarding h1 tag usage. According to cardinal rules of HTML and SEO, only one h1 tag should be used for an individual page.
Hope this helps :)
Please tell how to make the image color purple(as shown in given task)
Hey, your layout looks great! You can add an overlay by using pseudo-elements. Hope this will help you. Reference link: http://jsfiddle.net/6Mt3Q/
Hi! It took me hours to figure out how to put a circle border around each link. I used the updated version of fontawesome for the icons but when I tried to put a border around it, the icons don't go to the center of the border. So I ended up using fa-stack of fontawesome that's why the borders are thick. Is there any way to change the thickness of the circle from fontawesome? Or, I would appreciate it if you could give me tips on how I can adjust the icons to the center of the borders in CSS instead. Thank you.
Hey @kristine, great job! I would suggest creating a square structure using height and width and applying a line-height property of equal value. Try this CSS to fa-circle class: border: 1px solid; height: 35px; width: 35px; border-radius: 50%; line-height: 35px;
Does anyone have any easy to understand resources, tips, or tricks when it comes to making the content of the page more responsive? I'd like to make it mobile friendly.
Hey @ariana, to make to cards responsive try this css -> @media only screen and (max-width: 767px) { .container { flex-wrap: wrap; } }