如何使特定的 introjs 工具提示寬度更長?我可以使用 css 更改文本顏色,但更改寬度不起作用。
CSS:
.customTooltip * {
color: #4a4a4a;
font-size: 18px;
}
.customTooltip .introjs-tooltip-title {
color: #0a41c9;
}
//Not working
.customTooltip .introjs-tooltip {
min-width: 500px;
}
簡介:
const intro = introJs();
intro.setOptions({
steps: [{
title: 'Title',
intro: 'Long Intro',
tooltipClass: 'customTooltip'
}
]
})
uj5u.com熱心網友回復:
你想調整父 div 的大小嗎?
你可以試試
.customTooltip {
min-width: 500px;
}
直接,你也可以添加 !important。
轉載請註明出處,本文鏈接:https://www.uj5u.com/gongcheng/465725.html
