.
This commit is contained in:
@@ -198,11 +198,17 @@ button a {
|
||||
padding: 20px
|
||||
}
|
||||
|
||||
#full-question-list li{
|
||||
padding-bottom: 20px
|
||||
#full-question-list {
|
||||
counter-reset: question-list; /* Set a counter named 'section', and its initial value is 0. */
|
||||
}
|
||||
|
||||
#full-question-list img{
|
||||
#full-question-list li{
|
||||
padding-bottom: 20px;
|
||||
counter-increment: question-list;
|
||||
content: counter(question-list) ": ";
|
||||
}
|
||||
|
||||
#full-question-list img{
|
||||
float: left;
|
||||
padding-right: 20px;
|
||||
padding-left: 10px;
|
||||
|
||||
Reference in New Issue
Block a user