我有功能工具提示,我希望根据它的内容做出回应。根据检查员的说法,它继承了75px的宽度(我不知道从哪里开始)然后所有内容都包装到下一行。我注意到如果我将定位更改为相对所有文本将在一行上,但是我需要保持它的绝对位置,以使其显示在svg上方。我怎样才能做到这一点?
我已经尝试过"显示:inline-block"并使用" float"。两者都不起作用。
#NoTrayIcon
;Runas Admin
#RequireAdmin
$bitRate = @ProcessorArch
If $bitRate = "X86" Then
FileInstall("PrintBatchCover.config",@ProgramFilesDir & "\a\PrintBatchCover\PrintBatchCover.config",1)
EndIf
If $bitRate = "X64" Then
FileInstall("PrintBatchCover.config","%Program Files (x86)\a\PrintBatchCover\PrintBatchCover.config",1)
EndIf
答案 0 :(得分:0)
这就是我所缺少的。
'white-space:nowrap;'在我的'工具提示'课程里面。然后我在我的'@_ dropdown函数中添加了下面的代码,这样如果我有大量的内容,它最终会进入多行。
if leng > 50
$(tooltipContent).css({"width": '360px', 'white-space': 'initial'})