我想创建标题格式如下:
--- Chapter 01 ---
Introduction:
Why we need to learn it and How ?
---------------------------------------
--- Chapter 02 ---
Overview:
Get ourselves ready for the journey ?
---------------------------------------
我使用的是MarkDown编辑器,当我输入### Chapter
我试着用:
.widget::before{
background:red;
height:20px;
width:100%;
content: ""; <---- if this is removed, then block is not visible at all
}
但是没有content: "";,伪块就完全不显示了。伪类应该总是包括content参数吗?
对于我的问题,我得到了一个很好的答案,就是在特定的文本段(加上其他有用的提示)上显示一个“悬停提示”。
但后来我想:与其在无数地方写"Title="Bla bla bla bla,不如把它委托给CSS类,就像这样:
.billybob
{
color: lime;
Title="this is the title for Billy Bob";
}
我有一个尝试的例子,但在穆德维尔没有joy。
这是可能的吗,还是我被困在HTML中引用类的每个地方显式地添加标题?