Using Ref to get the height of an element in React
Use ref in React to get the height of an element:
- Initializes the state variable that will store the element's height.
-
useEffect()
Update the element's height in the hook . -
The height should be set to
ref.current.clientHeight
.
import {useEffect, useState, useRef} from 'react';
export default function App() {
const [divHeight, setDivHeight] = useState(0);
const ref = useRef(null);
useEffect(() => {
setDivHeight(ref.current.clientHeight);
console.log('height: ', ref.current.clientHeight);
console.log('width: ', ref.current.clientWidth);
}, []);
return (
<div ref={ref}>
<h2>Some</h2>
<h2>Content</h2>
<h2>{divHeight}</h2>
</div>
);
}
We useEffect
get the element's height in the hook because we need to wait for the ref to be set and wait for the div element clientHeight
to be rendered to the DOM before accessing its height property.
clientHeight
The property returns the intrinsic height of an element in pixels. This property includes padding but does not include borders, margins, and horizontal scroll bars.
Alternatively, we can use offsetHeight
the property, which returns the height of the element in pixels, including vertical padding and border.
useEffect(() => {
setDivHeight(ref.current.offsetHeight);
console.log('height: ', ref.current.offsetHeight);
console.log('width: ', ref.current.offsetWidth);
}, []);
The second argument we pass to the useEffect hook is an array of dependencies. We only want to set the divHeight state variable after the component mounts, so we use an empty array.
useRef()
The hook can be passed an initial value as an argument. The hook returns a mutable ref object whose .current property is initialized to the passed argument.
请注意
, we have to access the current property of the ref object in order to access the div element on which we set the ref attribute.
When we pass a ref prop to an element, for example <div ref={myRef} />
, React sets the ref object’s .current property to the corresponding DOM node.
useRef
The hook creates a normal JavaScript object but gives you the same ref object on every render. In other words, it's almost a memoized object value with a .current property.
It’s important to note that when you change the value of the current property of ref, it won’t cause a re-render, so we don’t have to
useEffect
add it in the dependencies.
The key time to get the height of an element using a ref is useEffect
to do it in the hook, after the ref is set and the element is rendered to the DOM.
For reprinting, please send an email to 1244347461@qq.com for approval. After obtaining the author's consent, kindly include the source as a link.
Related Articles
Determining the referer in PHP
Publish Date:2025/04/13 Views:133 Category:PHP
-
$_SERVER['HTTP_REFERER'] Provides us with a referrer URL to determine the user request on the server. However, this is not a best practice because the referrer can be HTTP compromised through . $_SESSION[] Determine the referrer in PHP usin
Implementing refresh permissions in MySQL
Publish Date:2025/04/10 Views:118 Category:MySQL
-
This tutorial explains the refresh permissions operation and its implementation with examples. Implementing refresh permissions in MySQL MySQL implements user management through grant tables to ensure security and access control in the serv
How to fix Git error Error: src refspec master does not match any
Publish Date:2025/04/05 Views:124 Category:Git
-
When using Git, we may encounter the error "src refspace master does not match any". Here's what the error means and how to fix it. What does src refspec master does not match any Mean in Git mean? We may encounter this error when we try to
Fatal: Refusing to Merge Unrelated Histories error in Git
Publish Date:2025/03/29 Views:124 Category:Git
-
This article outlines the steps required to resolve the fatal: refusing to merge unrelated histories error in Git. We usually encounter such errors when trying to merge two unrelated Git projects into one branch. It pops up when the receivi
Git refresh remote branch
Publish Date:2025/03/28 Views:94 Category:Git
-
Git is considered to be the most accurate and the most used software by developers in their projects and can be operated by multiple developers simultaneously. It provides many unique and quirky features to the developers which are very dif
How to avoid cross-origin (CORS) issues in React/Next.js
Publish Date:2025/03/17 Views:170 Category:NETWORK
-
In this article, we will introduce how to avoid cross-origin (CORS) issues in React/Next.js. Cross-origin resource sharing (CORS) is a protocol that defines how web requests should be handled when crossing different URLs.
React Tutorial - Transferring Props
Publish Date:2025/03/16 Views:188 Category:React
-
React transfers Props. Props are generated when components are encapsulated. Components expose some properties (Props) to the outside world to complete some functions.
React Tutorial: Props Anti-Pattern
Publish Date:2025/03/16 Views:187 Category:React
-
React's Props anti-pattern, using Props to generate state in getInitialState is an anti-pattern - Anti-Pattern.
React Tutorial - Props Validation
Publish Date:2025/03/16 Views:102 Category:React
-
Props validation is a very useful way to use components correctly. It can avoid many bugs and problems as your application becomes more and more complex. In addition, it can make your program more readable.