Hello all, I feel like my CSS is too long for this project, any advice I can clean it up more? Also, how can I center "per month" next to the price? I will appreciate any feedback.
Matěj Kubíček
@matejkubicekAll comments
- @dotriderSubmitted almost 5 years ago@matejkubicekPosted almost 5 years ago
Hi, nice work, your css is not too long. For vertical align "per month" try
vertical-align: middle
, in your case apply on both spans.1 - @matejkubicekSubmitted almost 5 years ago
Please leave me a feedback about my code and used workflow. Thx
After reading the report I have two questions:
- Element
section
must have a heading? Why? - Element
a
must contain word (or elementsspan
,p
,img
...)? Solution with elementsvg
included ina
element is big problem?
Thx for any commentary.
btw. I had a problem with
|
character in font link. This character separates two different font-face.|
can be replaced with%7C
and problem is solved.@matejkubicekPosted almost 5 years agopoint 1. repaired - I added
role="img"
atribut to svg tag and to the svg tag new tagtitle
with short description.Article about SVG ACCESSIBILITY on css-tricks.com
1 - Element