• Shaarli
  • Tag cloud
  • Picture wall
  • Daily
  • RSS
  • Login
4368 shaares
8 / 16
Filters
305 results tagged css

The Most Important CSS Concept to Learn

QRCode

For every inline style that targets an element using the style attribute, 1 goal is assigned to goal post (a).
For every id selector, 1 goal is assigned to post(b).
For every class selector, attribute selector, and pseudo-classes present, 1 goal is assigned to post(c).
For every element selector and pseudo-element, 1 goal is assigned to post (d).
The way I remember this is by using the acronym, SICAPEP:

https://medium.freecodecamp.org/the-most-important-css-concept-to-learn-8e929c944a19
August 29, 2018 at 3:26:40 PM EDT *
css tutorial
FILLER

Free Frontend - CSS Menus

QRCode

Hand-picked HTML and CSS code examples, tutorials and articles

https://freefrontend.com/css-menu
August 6, 2018 at 2:29:35 PM EDT *
css webdesign javascript menu
FILLER

Getting Started With CSS Layout

QRCode

Whether you’re fairly new to CSS or an experienced developer from elsewhere in the stack who wants to make sure your understanding of layout today is up to date, this guide covers everything you need to know about CSS Layout today.

https://www.smashingmagazine.com/2018/05/guide-css-layout/
August 6, 2018 at 1:50:29 PM EDT *
css flexbox
FILLER

What Happens When You Create A Flexbox Flex Container? — Smashing Magazine

QRCode

In a short series of articles, I’m going to spend some time in detailed unpacking of Flexbox — in the same way I have done in the past with grid. We’ll have a look at the things Flexbox was designed for, what it really does well, and why we might not choose it as a layout method. In this article, we will take a detailed look at what actually happens when you add display: flex to your stylesheet.

https://www.smashingmagazine.com/2018/08/flexbox-display-flex-container/
August 3, 2018 at 1:41:36 PM EDT *
css webdesign flexbox
FILLER

Understanding CSS Layout And The Block Formatting Context

QRCode

How a Block Formatting Context (BFC) behaves is easiest to understand with a simple float example. In the below example I have a box that contains an image that has been floated left and some text. If we have a good amount of text it wraps around the floated image and the border then runs around the whole lot.

There are two ways in which we ordinarily fix this layout problem. One would be to use a clearfix hack, which has the effect of inserting an element below the text and image and setting it to clear both. The other method is to use the overflow property, with a value other than the default of visible.
.outer {
overflow: auto;
}

https://www.smashingmagazine.com/2017/12/understanding-css-layout-block-formatting-context/
July 27, 2018 at 1:16:45 PM EDT *
webdesign css float
FILLER

Collection of CSS snippets | justmarkup

QRCode

clearfix, centering, font-size

https://justmarkup.com/log/2018/03/collection-of-css-snippets/
April 13, 2018 at 3:45:56 PM EDT *
css webdesign
FILLER

How to Use CSS Gradients on the Web

QRCode

In this tutorial you’ll learn about using gradients on the web. I’ll give you some examples, some exercises (such as how to create gradients for borders), and I’ll also throw in some useful resources which will make creating gradients a lot easier.

https://webdesign.tutsplus.com/tutorials/how-to-use-gradients-on-the-web--cms-29922
April 13, 2018 at 10:41:29 AM EDT *
css tutorial webdesign gradients
FILLER

Pocket Guide to CSS only Drawings and Animations

QRCode

So I became a bit obsessed about how further we can push the limits of what we can draw with CSS only. Basically, I noticed that you can play around with basic shapes like circles, rectangles and triangles to draw virtually anything. You can even put some drop-shadows and CSS filters to get some pretty cool effects as well.

In this pocket guide I'll write some examples from really easy to more complex things you can do to create cool drawings and animations with CSS.

https://journal.helabs.com/pocket-guide-to-css-only-drawings-and-animations-781470436ecc
April 11, 2018 at 4:12:30 PM EDT *
css animation tutorial
FILLER

A Complete Guide to Flexbox

QRCode

Flexbox cheatsheet

https://css-tricks.com/snippets/css/a-guide-to-flexbox/
April 11, 2018 at 10:34:01 AM EDT *
flexbox css webdesign tutorial
FILLER

Using Motion For User Experience On Apps And Websites

QRCode

Digital experiences are emulating real life more and more every day. This may seem counterintuitive, considering the hate that rains down on skeuomorphic visual design, but there’s a lot more to emulating real life than aesthetics. Interface designers can emulate real-life physics and movement on a digital screen. This type of motion is becoming more common, which is why it’s becoming easier for people to understand computers. We’re not getting better, the interfaces are!

https://www.smashingmagazine.com/2015/01/using-motion-for-ux-on-apps-and-websites/
April 11, 2018 at 9:58:59 AM EDT *
css animation webdesign
FILLER

Sass Burger

QRCode

Menu -> X transition

http://joren.co/sass-burger/
April 11, 2018 at 9:47:45 AM EDT *
css mobile webdesign
FILLER

Carbon - Code image generator

QRCode

Create and share beautiful images of your source code.
Start typing or drop a file into the text area to get started.

https://carbon.now.sh
February 27, 2018 at 1:56:41 PM EST *
css programming blog
FILLER

Optimizing SVG Text & Image Delivery with Inline SVG

QRCode

Each of these illustrations contains the title/name of a membership. There are no actual titles in the HTML to represent these memberships otherwise, which means that the text in each image is the title of that particular membership. This, in turn, means that this text needs to be as searchable, selectable and accessible as real (HTML) text.

In other words, the text inside the images needs to remain real text and not be converted to outlines, for starters. SVG text — wrapped in elements within an — is searchable, selectable and accessible by default. So we have a great start there.

https://www.sarasoueidan.com/blog/optimizing-svg-delivery-with-svg/
January 16, 2018 at 11:22:46 AM EST *
css svg
FILLER

Css arrows from codepen

QRCode

In a website or application, arrows can determine how you navigate them by performing specific actions like “go to next page”, indicating to scroll “top or bottom, left or right” and many other. With the help of CSS pseudo-elements and borders, it’s easy to create different arrow styles that will look great on both mobile and desktop. So if you’re currently using arrow images in your projects you can easily replace them with CSS arrows. Doing so, will reduce the number of requests when loading a website or web app.

https://freebiesupply.com/blog/css-arrows
January 14, 2018 at 3:59:42 PM EST *
css graphics
FILLER

Demystifying CSS alignment – Patrick Brosset – Medium

QRCode
https://medium.com/@patrickbrosset/demystifying-css-alignment-2d3ea7a02a36
January 14, 2018 at 3:57:27 PM EST *
css webdesign flexbox
FILLER

Learn CSS Grid in 5 Minutes

QRCode

Grid layouts are fundamental to the design of websites, and the CSS Grid module is the most powerful and easiest tool for creating it.

The module has also gotten native support by the major browsers (Safari, Chrome, Firefox) this year, so I believe that all front-end developer will have to learn this technology in the not too distant future.

https://medium.freecodecamp.org/learn-css-grid-in-5-minutes-f582e87b1228?ref=webdesignernews.com
November 28, 2017 at 9:48:16 AM EST *
css grid
FILLER

CSS: Cat Swinging on String

QRCode
https://codepen.io/davidkpiano/pen/Xempjq
September 19, 2017 at 11:06:27 AM EDT *
css animation
FILLER

Hanging Punctuation in CSS with @supports and Custom Properties

QRCode
https://codepen.io/dudleystorey/pen/JWGbZg
August 15, 2017 at 10:21:52 AM EDT *
typography css
FILLER

GRID LAYOUT - a Collection by Gabi on CodePen

QRCode
https://codepen.io/collection/DgwjNL/
August 15, 2017 at 10:13:20 AM EDT *
css grid
FILLER

Gradients based on nature

QRCode

sunset water forest sand snow art flowers fire black and white

https://gradient.world/
August 10, 2017 at 9:58:15 AM EDT *
css colorscheme gradients
FILLER
8 / 16
Shaarli · The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community · Documentation
Fold Fold all Expand Expand all Are you sure you want to delete this link? Are you sure you want to delete this tag? The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community