Category: Frontend
-
Front-end Developer Handbook by Cody Lindley
If you are in front-end development you should definitely check out this handbook by Cody Lindley. It’s packed with useful knowledge!
-
Select the id that begins and ends with certain values
CSS selectors have gone a long way from their beginnings. Today you have multiple choices to select elements in the page. Today I needed to select all the elements with the id matching this regex: fixed_string_(.*)_digit But CSS doesn’t let regex. To do this, you can combine these two attribute selectors: [id^=value] // Element with […]