in Education by
For some reason, the clickable region for my text is much larger in height than the div and 'a' tag are set as. If you run the code snippet and hover beneath and below the text, you will see that the clickable area is much larger than the div and 'a' tag. Any ideas? Thanks. .title { display: flex; position: absolute; background-color: red; z-index: 6; height: 7em; width: 20em; bottom: 11.25vh; text-align: left; } .title a { font-size: 108px; line-height: 108px; text-decoration: none; color: #000; font-family: 'Inknut Antiqua', serif; } Run code snippetExpand snippet JavaScript questions and answers, JavaScript questions pdf, JavaScript question bank, JavaScript questions and answers pdf, mcq on JavaScript pdf, JavaScript questions and solutions, JavaScript mcq Test , Interview JavaScript questions, JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)

1 Answer

0 votes
by
It is because you've set a line height that is actually much smaller than the default line height. (if you remove line-height: 108px; you will see it is much larger). You can add overflow: hidden to the .title div if you don't want the link to flow over the div size. .title { display: flex; position: absolute; background-color: red; z-index: 6; height: 7em; width: 20em; bottom: 11.25vh; text-align: left; overflow: hidden; } .title a { font-size: 108px; line-height: 108px; text-decoration: none; color: #000; font-family: 'Inknut Antiqua', serif; } Run code snippetExpand snippet

Related questions

0 votes
    For some reason, the clickable region for my text is much larger in height than the div and 'a' ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 8, 2022 in Education by JackTerrance
0 votes
    I have a webpage where Firefox 2 displays the font certain, really specific elements, larger than than what ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 17, 2022 in Education by JackTerrance
0 votes
    I have a webpage where Firefox 2 displays the font certain, really specific elements, larger than than what ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 17, 2022 in Education by JackTerrance
0 votes
    I have a webpage where Firefox 2 displays the font certain, really specific elements, larger than than what ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 17, 2022 in Education by JackTerrance
0 votes
    A die is rolled thrice, find the probability of getting a larger number each time than the previous number. A. 5 ... D. none of these Select the correct answer from above options...
asked Nov 15, 2021 in Education by JackTerrance
0 votes
    When transaction Ti requests a data item currently held by Tj, Ti is allowed to wait only if it ... Answers, Database Interview Questions and Answers for Freshers and Experience...
asked Oct 11, 2021 in Education by JackTerrance
0 votes
    __________ is increasingly being used in server systems to improve performance by caching frequently used data, ... in portion Storage and File Structures of Database Management...
asked Oct 10, 2021 in Education by JackTerrance
0 votes
    The height and width of a memory card is usually no bigger than……. a. 1.6 inches b. 1.7 inches c. 1.5 inches Select the correct answer from above options...
asked Nov 30, 2021 in Education by JackTerrance
0 votes
    I am running my junit tests via ant and they are running substantially slower than via the IDE. My ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 21, 2022 in Education by JackTerrance
0 votes
    I am running my junit tests via ant and they are running substantially slower than via the IDE. My ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 20, 2022 in Education by JackTerrance
0 votes
    R is technically much closer to the Scheme language than it is to the original _____ language. (a) B (b) ... Started of R Programming Select the correct answer from above options...
asked Feb 13, 2022 in Education by JackTerrance
0 votes
    It was faster more reliable smaller and much cheaper to build than a vacuum tube. Select the correct answer from above options...
asked Dec 16, 2021 in Education by JackTerrance
0 votes
    When creating a jQuery UI datepicker on a detached div it works fine in Firefox but in Chrome it gets ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 4, 2022 in Education by JackTerrance
0 votes
    Why Our Education System Did not Give Much value to computer subject why it is treat as a optional one. Is This ... no value of this ? Select the correct answer from above options...
asked Dec 23, 2021 in Education by JackTerrance
0 votes
    Why Link Is Provided In Neutral Of An Ac Circuit And Fuse In Phase Of Ac Circuit?...
asked Dec 12, 2020 in Technology by JackTerrance
...