1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
| <div> <style> .callout-note-b-info { border-top-color: rgb(238, 227, 207); border-right-color: rgb(238, 227, 207); border-bottom-color: rgb(238, 227, 207); border-left-color: rgb(238, 227, 207); margin-bottom: 20px; padding: 15px; position: relative; border: 0px solid #eee; border-left-width: 5px; border-radius: 3px; padding: 10px; border-radius: 5px; box-shadow: 2px 1px 3px #bbb; background-color: rgb(235, 241, 251); color: darkblue; border-color: #4983df; } </style> <div class="callout-note-b-info"> ℹ️ 信息 </div> </div>
|