Bootstrap 3 responsive h1 tag

前端 未结 3 680
萌比男神i
萌比男神i 2021-02-14 00:46

I am creating a site and want it to be responsive so I am using bootstrap 3. However, the h1 tag on the privacy policy page and about page come out of the container on small mob

3条回答
  •  无人共我
    2021-02-14 01:27

    I've had the same problem, which I've solved with jQuery:

    function resize() {
        var n = $("body").width() / 17 + "pt";
        $("h1").css('fontSize', n);
    }
    $(window).on("resize", resize);
    $(document).ready(resize);
    

    The ratio can be adjusted by replacing the value 17 and it can be used for other tags by changing the h1.

提交回复
热议问题