• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

markers of bullets

Enthusiast ,
Dec 29, 2022 Dec 29, 2022

Copy link to clipboard

Copied

Hi,

 

Step 1. I typed bullets on Id.

Step 2. On EPUB, they are not represented.

Step 3. On css, list-style-type: disc is applied.

 

On the internet, I can only find out disc, circle, square.

Are there more markers?

 

Hosun

 

Step 1Step 1Step 2Step 2Step 3Step 3

 

 

 

 

TOPICS
Feature request

Views

112

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Dec 29, 2022 Dec 29, 2022

There are about a dozen 'list style types.' Here's a fairly comprehensive list:

https://www.w3schools.com/cssref/pr_list-style-type.php

 

Again, though, not all browsers support all list styles, and EPUB readers are always a subset of browser functionality. If you were to run through the complete list, you would probably find that most readers reduce most of those to dots, blank space or even garbage characters.

 

There is no specific statement for the list type in your sample CSS code. In addit

...

Votes

Translate

Translate
Community Expert ,
Dec 29, 2022 Dec 29, 2022

Copy link to clipboard

Copied

LATEST

There are about a dozen 'list style types.' Here's a fairly comprehensive list:

https://www.w3schools.com/cssref/pr_list-style-type.php

 

Again, though, not all browsers support all list styles, and EPUB readers are always a subset of browser functionality. If you were to run through the complete list, you would probably find that most readers reduce most of those to dots, blank space or even garbage characters.

 

There is no specific statement for the list type in your sample CSS code. In addition to list-style-position, there should be a list-style-type command, like these examples:

 

list-style-type: circle;
list-style-type: square;
list-style-type: disc;

 

 

Since 'disc' — the dot — is the default, that's what you will get if otherwise undefined or (usually) with any unsupported option.

 


╟ Word & InDesign to Kindle & EPUB: a Guide to Pro Results (Amazon) ╢

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines