Friday, April 19, 2024
HomeWeb developmentAll the things You Have to Know In regards to the Hole...

All the things You Have to Know In regards to the Hole After the Record Marker | CSS-Methods


I used to be studying “Artistic Record Styling” on Google’s internet.dev weblog and observed one thing odd in one of many code examples within the ::marker part of the article. The built-in listing markers are bullets, ordinal numbers, and letters. The ::marker pseudo-element permits us to fashion these markers or substitute them with a customized character or picture.

::marker {
  content material: url('/marker.svg') ' ';
}

The instance that caught my consideration makes use of an SVG icon as a customized marker for the listing objects. However there’s additionally a single house character (" ") within the CSS worth subsequent to the url() operate. The aim of this house appears to be to insert a spot after the customized marker.

After I noticed this code, I instantly puzzled if there was a greater strategy to create the hole. Appending an area to content material feels extra like a workaround than the optimum resolution. CSS gives margin and padding and different normal methods to house out components on the web page. May none of those properties be used on this scenario?

First, I attempted to substitute the house character with a correct margin:

::marker {
  content material: url('/marker.svg');
  margin-right: 1ch;
}

This didn’t work. Because it seems, ::marker solely helps a small set of principally text-related CSS properties. For instance, you possibly can change the font-size and coloration of the marker, and outline a customized marker by setting content material to a string or URL, as proven above. However the margin and padding properties are not supported, so setting them has no impact. What a disappointment.

May it actually be {that a} house character is the one strategy to insert a spot after a customized marker? I wanted to search out out. As I researched this matter, I made a couple of fascinating discoveries that I’d wish to share on this article.

Including padding and margins

First, let’s affirm what margin and padding do on the <ul> and <li> components. I’ve created a take a look at web page for this goal. Drag the related sliders and observe the impact on the spacing on both sides of the listing marker. Tip: Use the Reset button liberally to reset all controls to their preliminary values.

Word: Browsers apply a default padding-inline-left of 40px to <ol> and <ul> components. The logical padding-inline-left property is equal to the bodily padding-left property in writing programs with a left-to-right inline route. On this article, I’m going to make use of bodily properties for the sake of simplicity.

As you possibly can see, padding-left on <li> will increase the hole after the listing marker. The opposite three properties management the spacing to the left of the marker, in different phrases, the indentation of the listing merchandise.

Discover that even when the listing merchandise’s padding-left is 0px, there’s nonetheless a minimal hole after the marker. This hole can’t be decreased with margin or padding. The precise size of the minimal hole is determined by the browser.

First three properties: UL margin-left, UL padding-left, LI margin-left. Fourth property: LI padding-left.
The primary three properties push the complete listing merchandise (together with the marker) to the proper. The fourth property pushes solely the listing merchandise’s content material to the proper.

To sum up, the listing merchandise’s content material is positioned at a browser-specific minimal distance from the marker, and this hole could be additional elevated by including a padding-left to <li>.

Subsequent, let’s see what occurs once we place the marker inside the listing merchandise.

Shifting the marker contained in the listing merchandise

The list-style-position property accepts two key phrases: exterior, which is the default, and inside, which strikes the marker contained in the listing merchandise. The latter is beneficial for creating designs with full-width listing objects.

A grocery list. Each item has a thin bottom border that extends from the left to the right edge of the list.
The listing marker is positioned contained in the listing merchandise, in order that the listing merchandise’s backside border can prolong to the left fringe of the listing field

If the marker is now inside the listing merchandise, does this imply that padding-left on <li> now not will increase the hole after the marker? Let’s discover out. On my take a look at web page, activate list-style-position: inside by way of the checkbox. How are the 4 padding and margin properties affected by this alteration?

As you possibly can see, padding-left on <li> now will increase the spacing to the left of the marker. Which means we’ve misplaced the power to extend the hole after the marker. On this scenario, it might be helpful to have the ability to add margin-right to the ::marker itself, however that doesn’t work, as we’ve established above.

The four properties: UL margin-left, UL padding-left, LI margin-left, LI padding-left.
All 4 properties push the complete listing merchandise to the proper. The minimal hole can’t be elevated by normal means.

Moreover, there’s a bug in Chromium that causes the hole after the marker to triple after switching to inside positioning. By default, the size of the hole is about one-third of the textual content dimension. So at a default font-size of 16px, the hole is about 5.5px. After switching to inside, the hole grows to the complete 16px in Chrome. This bug impacts the disc, circle, and sq. markers, however not ordinal quantity markers.

The next picture reveals the default rendering of outdoor and inside-positioned listing markers throughout three main browsers on macOS. To your comfort, I’ve horizontally aligned all listing objects on their markers to make it simpler to check the variations in hole sizes.

Six list items with varying gaps between the marker and text.
Solely Firefox maintains the identical hole dimension between the 2 marker positioning modes. This may be thought of a browser interoperability (interop) subject.

To sum up, switching to list-style-position: inside introduces two issues. We are able to now not enhance the hole by way of padding-left on <li>, and the hole dimension is inconsistent between browsers.

Lastly, let’s see what occurs once we substitute the default listing marker with a customized marker.

Switching to a customized marker

There are two methods to outline a customized marker:

  • list-style-type and list-style-image properties
  • content material property on the ::marker pseudo-element

The content material property is extra highly effective. For instance, it permits us to make use of the counter() operate to entry the listing merchandise’s ordinal quantity (the implicit list-item counter) and beautify it with customized strings.

Sadly, Safari doesn’t help the content material property on ::marker but (WebKit bug). For that reason, I’m going to make use of the list-style-type property to outline the customized marker. You possibly can nonetheless use the ::marker selector to fashion the customized marker declared by way of list-style-type. That side of ::marker is supported in Safari.

Any Unicode character can doubtlessly function a customized listing marker, however solely a small set of characters even have “Bullet” of their official identify, so I believed I’d compile them right here for reference.

Character Title Code level CSS key phrase
Bullet U+2022 disc
Triangular Bullet U+2023
Hyphen Bullet U+2043
Black Leftwards Bullet U+204C
Black Rightwards Bullet U+204D
Inverse Bullet U+25D8
White Bullet U+25E6 circle
Reversed Rotated Floral Coronary heart Bullet U+2619
Rotated Heavy Black Coronary heart Bullet U+2765
Rotated Floral Coronary heart Bullet U+2767
Circled White Bullet U+29BE
⦿ Circled Bullet U+29BF

Word: The CSS sq. key phrase doesn’t have a corresponding “Bullet” character in Unicode. The character that comes closest is the Black Small Sq. (▪️) emoji (U+25AA).

Now let’s see what occurs once we substitute the default listing marker with list-style-type: "•" (U+2022 Bullet). This is identical character because the default bullet, so there shouldn’t be any main rendering variations. On my take a look at web page, activate the list-style-type possibility and observe any modifications to the marker.

As you possibly can see, there are two vital modifications:

  1. There isn’t a longer a minimal hole after the marker.
  2. The bullet has change into smaller, as if it have been rendered at a smaller font-size.

In keeping with CSS Counter Types Degree 3, the default listing marker (disc) needs to be “much like • U+2022 BULLET”. Plainly browsers enhance the scale of the default bullet to make it extra legible. Firefox even makes use of a particular font, -moz-bullet-font, for the marker.

:marker selected in the inspector. Fonts used: -moz-bullet-font.
The “Fonts” pane in Firefox’s DOM inspector reveals the particular font.

Can the small dimension downside be fastened with CSS? On my take a look at web page, activate marker styling and observe what occurs whenever you change the font-size, line-height, and font-family of the marker.

As you possibly can see, growing the font-size causes the customized marker to change into vertically misaligned, and this can’t be corrected by reducing the line-height. The vertical-align property, which may simply repair this downside, just isn’t supported on ::marker.

However did you discover that altering the font-family could cause the marker to change into greater? Attempt setting it to Tahoma. This might doubtlessly be a good-enough workaround for the small-size downside, though I haven’t examined which font works finest throughout the main browsers and working programs.

You might also have observed that the Chromium bug doesn’t happen anymore whenever you place the marker contained in the listing merchandise. Which means a customized marker can function a workaround for this bug. And this leads me to the principle downside, and the explanation why I began researching this matter. If you happen to outline a customized marker and place it contained in the listing merchandise, there isn’t any hole after the marker and no strategy to insert a spot by normal means.

  1. There isn’t a minimal hole after customized markers.
  2. ::marker doesn’t help padding or margin.
  3. padding-left on <li> doesn’t enhance the hole, for the reason that marker is positioned inside.

Abstract

Right here’s a abstract of all the important thing info that I’ve talked about within the article:

  1. Browsers apply a default padding-inline-start of 40px to <ul> and <ol> components.
  2. There’s a minimal hole after built-in listing markers (disc, decimal, and so forth.). There isn’t a minimal hole after customized markers (string or URL).
  3. The size of the hole could be elevated by including a padding-left to <ul>, however provided that the marker is positioned exterior the listing merchandise (the default mode).
  4. Customized string markers have a smaller default dimension than built-in markers. Altering the font-family on ::marker can enhance their dimension.

Conclusion

Trying again on the code instance from the start of the article, I believe I perceive now why there’s an area character within the content material worth. There’s simply no higher strategy to insert a spot after the SVG marker. It’s a workaround that’s wanted as a result of no quantity of margin and padding can create a spot after a customized marker that’s positioned contained in the listing merchandise. A margin-right on ::marker may simply do it, however that isn’t supported.

Till ::marker provides help for extra properties, internet builders will usually haven’t any alternative however to cover the marker and emulate it with a ::earlier than pseudo-element. I had to do this myself not too long ago as a result of I couldn’t change the marker’s background-color. Hopefully, we gained’t have to attend too lengthy for a extra highly effective ::marker pseudo-element.



RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments