How can I add dark shading to an outer div but not inner div with css?
I am positioning an overlay on a webcam in my react app to show a user where to position their face. Here is my JSX: <div className='webcam-container'> <Webcam ref={webcamRef} screenshotFormat='image/jpeg' screenshotQuality={1} width={360} /> <div className='webcam-overlay'> <div className='face-position-indicator' /> </div> </div>…