How may I start online marketing
Inline Styles as Classes (lol)
If you’re abhorred by using inline styles, just move that style
to the class
attribute! And then make sure you have CSS in place that, ya know, does what it says on the box.
OK lemme dig in and totally ruin the joke.
- First off, it’s a joke, so don’t actually do this. I don’t even mind the occasional inline style for one-off stuff, but this is not that.
- To me the weirdest part is that period (
.
) character. Escaping the more unusual characters with a backslash () feels normal, but what is that period about? UPDATE: It’s because of the space. It’s two classes in the HTML, not one. Derp. - The little period trick there doesn’t work when the following character is a number (e.g.
.padding:.1rem;
). UPDATE: Because classes that start with a number are invalid. Derp. - You can avoid the escaping and trickery if you go with an attribute selector like
[class*="display: flex;"]
. - This reminds me of Mathias Bynens’ research: CSS character escape sequences. But… that doesn’t seem to work anymore? I wonder if browsers changed or if the tool broke and doesn’t output what it should anymore (e.g. does
.color\3A \ #f06d06
look right?).
Here’s all that playing around:
The post Inline Styles as Classes (lol) appeared first on CSS-Tricks.
You can support CSS-Tricks by being an MVP Supporter.
Useful and Useless Code Comments
If somebody says a comment isn’t adding any value, I would ask: to whom?
Personally, I’ve never liked the advice that writing obvious comments is bad practice—probably because I write obvious comments all the time.
Jim showed off some examples of “code comments that are at the same level of fidelity as the code itself.” Those are the hardest calls with code comments.
// this function adds two numbers
function add(a, b) {
return a + b;
}
Easy to point at that and call it not useful. I tend not to leave this type of comment, but it’s fair play for Jim to question that. Comments can be used for a wide swath of people whom may at some point interact with that code, so why gate-keep it?
[…] comments can serve a very different purpose when they’re being read vs. when they’re being written. Those are almost two different kinds of activities.
I’d add they serve a different purpose when re-visiting old code vs actively working. Also different when you’re trying to code review versus directly contribute.
Direct Link to Article — Permalink
The post Useful and Useless Code Comments appeared first on CSS-Tricks.
You can support CSS-Tricks by being an MVP Supporter.
#320: Andy and Una from Google’s Learn CSS Project
Learn CSS is a very cool project from a whole team of people at Google (and outside). It does a great job of documenting where is right now, in a fairly comprehensive way. Learn CSS was spearheaded by Una Kravets and Andy Bell did the bulk of the writing, so they are two extra-special guests to have on the show to talk about it. Why CodePen Radio though? Because there are literally hundreds of Embedded Pens used in this course, all using a style guide base and are live editors in the site itself. Cool!
Time Jumps
- 00:55 What is Learn CSS?
- 03:07 Who’s idea was this?
- 08:08 Sponsor: WooCommerce
- 09:17 Snapshot of now and the future of CSS
- 12:55 Quality content and course creation
- 17:51 Using CodePen for demos
- 19:27 Shared stylesheet for a design system
- 24:06 Native CSS only
- 26:58 How difficult was it to sell Google on this?
Sponsor: WooCommerce
WooCommerce supports Apple Pay at checkout now, which is a nice thing to offer. Some people have pretty strong preferences for how they pay online, and it’s best to meet them there rather than force one particular payment method.
The post #320: Andy and Una from Google’s Learn CSS Project appeared first on CodePen Blog.
Three Crucial Things to Look for in a Web Server Host
Your company’s website is often the first thing potential customers see when they look up your brand. Therefore, it’s crucial to make an excellent first impression. Unfortunately, if your website is bogged down by slow...
The post Three Crucial Things to Look for in a Web Server Host appeared first on 85ideas.com.