Making an h2 tag with a strong tag inside accessible

后端 未结 3 1563
清歌不尽
清歌不尽 2021-01-24 18:55

So this may seem like a very simple question but I can\'t get my head around it. I have the following HTML:

word 1 - word 2

3条回答
  •  情话喂你
    2021-01-24 19:24

    I'm not sure what "weird readings" means.

    How about a tag?

    One Two

    h2 {
      font-family: sans-serif;
      font-weight: normal;
    }
    h2 span {
      font-weight: bold;
    }
    

    Demo JSFiddle

提交回复
热议问题