teratail header banner
teratail header banner
質問するログイン新規登録

質問編集履歴

2

ソースコードの追記

2021/12/15 08:33

投稿

cn4433
cn4433

スコア3

title CHANGED
File without changes
body CHANGED
@@ -51,6 +51,7 @@
51
51
  padding: 0;
52
52
  margin-left: 0;
53
53
  font-weight: 600;
54
+ column-count: 2;
54
55
  }
55
56
 
56
57
  .list05_black ul {

1

初心者マークの設定、ソースコードの追加

2021/12/15 08:33

投稿

cn4433
cn4433

スコア3

title CHANGED
File without changes
body CHANGED
@@ -5,8 +5,114 @@
5
5
 
6
6
  ### 発生している問題・エラーメッセージ
7
7
  ![イ![イメージ説明](ceff1826850c1c3211b2b53bda7a94fd.png)
8
- ### 該当のソースコード
9
8
 
9
+ ### htmlソースコード
10
+
11
+ ```ここに言語を入力
12
+ <dl class="list06_black">
13
+ <dt>薬剤・商材費用例</dt>
14
+ <dd>
15
+ <ul>
16
+ <li>カップ</li>
17
+ <li>ハケ</li>
18
+ <li>マドラー</li>
19
+ <li>デジタルスケール</li>
20
+ </ul>
21
+ <p>etc…</p>
22
+ </dd>
23
+ </dl>
24
+ ```
25
+ ### cssソースコード
26
+ ```ここに言語を入力
27
+ .list05_black {
28
+ width: fit-content;
29
+ min-width: 100%;
30
+ border: 1px solid #ddd;
31
+ margin: 33px 0;
32
+ padding: 0 30px 25px 30px;
33
+ font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
34
+ }
35
+
36
+ .list05_black dt {
37
+ display: inline-block;
38
+ background: #fff;
39
+ padding: 0 10px;
40
+ font-size: 18px;
41
+ font-weight: 700;
42
+ letter-spacing: .055em;
43
+ position: relative;
44
+ top: -12px;
45
+ left: -12px;
46
+ }
47
+
48
+ .list05_black dd {
49
+ position: relative;
50
+ margin-top: 0;
51
+ padding: 0;
52
+ margin-left: 0;
53
+ font-weight: 600;
54
+ }
55
+
56
+ .list05_black ul {
57
+ list-style-type: none;
58
+ padding-left: 0;
59
+ margin-left: 0;
60
+ margin-bottom: 10px;
61
+ }
62
+
63
+ .list05_black ul>li {
64
+ display: list-item;
65
+ text-align: -webkit-match-parent;
66
+ position: relative;
67
+ padding: 0 0 0 15px;
68
+ font-weight: 600;
69
+ }
70
+
71
+ .list05_black li {
72
+ margin: 10px 0 0;
73
+ border-bottom: dashed 1px #ddd;
74
+ font-size: 15px;
75
+ line-height: 25px;
76
+ }
77
+
78
+ .list05_black ul>li:before {
79
+ display: block;
80
+ content: '';
81
+ position: absolute;
82
+ top: 10px;
83
+ left: 1px;
84
+ width: 6px;
85
+ height: 6px;
86
+ background: #181818;
87
+ border-radius: 50%;
88
+ border-style: solid;
89
+ border-width: 0;
90
+ }
91
+
92
+ .list05_black p {
93
+ text-align: right;
94
+ margin: 0px !important;
95
+ }
96
+
97
+ .list05_black span {
98
+ margin: 0px !important;
99
+ letter-spacing: normal;
100
+ /* font-size: 12px;*/
101
+ /* font-weight: 500;*/
102
+ }
103
+
104
+ .list05_black {
105
+ width: 100%;
106
+ }
107
+ .list05_black li {
108
+ font-size: 13px;
109
+ line-height: 1.5em;
110
+ }
111
+ .list05_black ul>li:before {
112
+ top: 6px;
113
+ }
114
+ ```
115
+
10
116
  ```ここに言語名を入力
11
117
  html CSS
12
118
  ```