inline

background Invalid property value in Chrome

早过忘川 提交于 2020-12-14 02:29:01
问题 I am getting background Invalid property value in Chrome. What am I missing here? html: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Email template</title> </head> <body style="margin-left: 0; margin-top: 0; margin-right: 0; margin-bottom: 0;"> <div class="t3 sMargin" style="margin-top: 20px; background-color: #dedede; padding-left: 40px; padding-right: 40px; padding-top: 20px; padding-bottom: 20px;"> <div class="t31" style="color: #5222a8; font-weight: bold; font

background Invalid property value in Chrome

梦想的初衷 提交于 2020-12-14 02:28:33
问题 I am getting background Invalid property value in Chrome. What am I missing here? html: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Email template</title> </head> <body style="margin-left: 0; margin-top: 0; margin-right: 0; margin-bottom: 0;"> <div class="t3 sMargin" style="margin-top: 20px; background-color: #dedede; padding-left: 40px; padding-right: 40px; padding-top: 20px; padding-bottom: 20px;"> <div class="t31" style="color: #5222a8; font-weight: bold; font

Force <summary> to behave as display:inline instead of inline-block

流过昼夜 提交于 2020-12-13 03:20:31
问题 I would like to use the <details> / <summary> tags for pure CSS popups, but <summary> behaves as inline-block and I cannot change it to inline. Is there any way to force <summary> to behave as display:inline instead of inline-block? <!DOCTYPE html> <html> <head> <style> summary { color: red; } summary::-webkit-details-marker { display: none; } details, summary { display: inline; /* hyphens: manual;/ */ /* word-break: break-all; */ /* overflow-wrap: anywhere; */ /* white-space: unset; */ }