gpt4 book ai didi

javascript - 使特定字符(或类/ID)成为字符串的中心点

转载 作者:行者123 更新时间:2023-11-30 16:00:17 25 4
gpt4 key购买 nike

我想将一些文本居中对齐,但不仅仅是通过执行 text-align: center

我想让一个特定的字符/类/ID 成为中心,而字符串的其余部分被很好地附加和前置。这就是我的意思:

https://jsfiddle.net/6w5Lb6ta/

如您所见,中间的红色 c 稍微居中对齐(我使用 margin-right 来制作这个小示例)。我想说这样的话:

align all the text in the middle, but make the 'anchor point' of the string a specific character/class/ID

这样的事情可行吗?

最佳答案

这可以用一些 jQuery 来完成:

var width = $('#text').width()/2;
var width2 = $('#center').width()/2;
var left = $('#center').offset().left;
$('#text').css('margin-right', (left-width+width2)*2);

https://jsfiddle.net/6w5Lb6ta/7/

关于javascript - 使特定字符(或类/ID)成为字符串的中心点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37880869/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com