Nominate Your Favorite Plugins for Plugin Madness 2019
The post Nominate Your Favorite Plugins for Plugin Madness 2019 appeared first on Torque.
Scott O’Hara digs into the <figure>
and <figcaption>
elements. Gotta love a good ol’ HTML deep dive.
I use these on just about every blog post here on CSS-Tricks, and as I’ve suspected, I’ve basically been doing it wrong forever. My original thinking was that a figcaption
was just as good as the alt
attribute. I generally use it to describe the image.
<figure> <img src="starry-night.jpg" alt=""> <figcaption>The Starry Night, a famous painting by Vincent van Gogh</figcaption>
</figure>
I intentionally … Read article
The post How do you figure? appeared first on CSS-Tricks.
Web developers and content editors alike often forget or ignore one of the most important parts of making a website accessible and SEO performant: image alt text. You know, that seemingly small image attribute that describes an image:
<img src="/cute/sloth/image.jpg" alt="A brown baby sloth staring straight into the camera with a tongue sticking out." >
📷 Credit: Huffington Post
If you regularly publish content on the web, then you know it can be tedious trying to come up with descriptive … Read article
The post Using Artificial Intelligence to Generate Alt Text on Images appeared first on CSS-Tricks.
SVG is a great format for icons. Vector formats look crisp and razor sharp, no matter the size or device — and we get tons of design control when using them inline.
SVG also gives us another powerful feature: the ability to manipulate their properties with CSS. As a result, we can make quick and simple interactions where it used to take crafty CSS tricks or swapping out entire image files.
Those interactions include changing color on hover states. It … Read article
The post The Many Ways to Change an SVG Fill on Hover (and When to Use Them) appeared first on CSS-Tricks.
I’ve been into the idea of JAMstack lately. In fact, it was at the inaugural JAMstack_conf that I gave a talked called The All-Powerful Font-End Developer. My overall point there was that there are all these services that we can leverage as front-end developers to build complete websites without needing much help from other disciplines — if any at all.
Sometimes, the services we reach for these days are modern and fancy, like a real-time database solution with authentication … Read article
The post Forms that Move With You with Wufoo appeared first on CSS-Tricks.
You know how you can have multiple backgrounds?
body { background-image: url(image-one.jpg), url(image-two.jpg);
}
That’s just background-image
. You can set their position too, as you might expect. We’ll shorthand it:
body { background: url(image-one.jpg) no-repeat top right, url(image-two.jpg) no-repeat bottom left;
}
I snuck background-repeat
in there just for fun. Another one you might not think of setting for multiple different backgrounds, though, is background-clip
. In this linked article, Stefan Judis notes that this unlocks some … Read article
The post Multiple Background Clip appeared first on CSS-Tricks.
What do we mean by 1:1 (pronounced one-on-one)? This is typically a private conversation between an Engineering Manager/Lead and their Employee. I personally have been a Lead, a Manager, and also an Independent Contributor/Software Engineer, so I’ve sat at each side of the table. I’ve both had great experiences on each side and have made mistakes on each side. That said, I’m going to cover some meditations on the subject because 1:1s open opportunities for personal and professional growth when … Read article
The post The Importance of One-on-Ones appeared first on CSS-Tricks.
Explore what the world is searching. Enter a search term or a topic.