De DSI heeft de verdachte aangehouden. © Bart Meesters / Meesters Multi Media
Drie medewerkers zijn vrijdagmiddag gegijzeld en met een mes bedreigd op de psychiatrische afdeling van de PI Vught. Een betrouwbare bron meldt dat de gijzelnemer Corné H. zou zijn geweest. Die hield in maart 2024 vier medewerkers lange tijd vast in een café in Ede.
Tom Tacken, Sara Wiersma, Henk van Gelder
5 december 2025, 16:29 Laatste update: gisteren om 20:07
Een woordvoerder van Dienst Justitiële inrichtingen (DJI) bevestigt dat de gijzelaars veilig zijn.Een gijzelaar werd al snel vrijgelaten door de gijzelnemer, de andere twee medewerkers werden rond 18.15 uur alsnog vrijgelaten. Het motief van de gijzeling is nog niet bekend.
incident in PI Vught: Gedetineerde raakt gewond bij confrontatie met bewakers
Table of Contents
VUGHT – Een gedetineerde in de Penitentiaire Inrichting (PI) Vught is gisteren gewond geraakt bij een confrontatie met bewakers van de Dienst Justitiële Inrichtingen (DJI). De man, die tot de groep ‘gedetineerde patiënten’ behoort, zou zich agressief hebben gedragen.
PI Vught is een speciale gevangenis die zich richt op gedetineerden met ernstige psychische problemen. Deze gevangenen vormen een risico voor zichzelf én/of voor anderen, schreef deze krant in een eerder artikel.
„De meest ernstig zieke mannen hebben bijvoorbeeld het lijf van een bodybuilder, maar het verstand van een 4-jarig kind of ze denken dat alle gevangenismedewerkers CIA-agenten zijn die ze moeten vermoorden”, schetste directeur Zorg en Behandeling Jantijn Fockens eerder. „Ze komen rechtstreeks vanuit de politiecel naar de PI Vught, maar ook vanuit andere gevangenissen in het land, omdat wij ze meer zorg kunnen bieden dan een reguliere gevangenis.”
Gedetineerde patiënten, worden ze in de PI Vught genoemd. Het gaat om kort én lang gestraften of verdachten die nog in afwachting zijn van de uitspraak van de rechter.
Het incident speelde zich af in de reguliere gevangenis.
(Foto: Bart Meesters / Meesters Multi Media)
Zwaar bewapende DJI’er.
(Foto: )
“`html
Fit Width vs.Fit Height: Understanding Image Scaling in CSS
When working with images in CSS, you’ll often need to control how they scale to fit their containers. Two commonly used values for the object-fit property are fit-width and fit-height. While both aim to resize the image, they do so in fundamentally different ways, leading to distinct visual outcomes. Understanding these differences is crucial for achieving the desired look and feel on your website.
What is object-fit?
The object-fit property specifies how the content of a replaced element, like an <img> or <video>, should be resized to fit its container. It doesn’t affect the size of the container itself, only the image *within* that container. Without object-fit, images frequently enough distort or overflow their containers.
object-fit: fit-width
fit-width scales the image to fit the width of its container.The image’s height is adjusted proportionally to maintain its aspect ratio. Crucially, the image will be scaled down (or up) until its width matches the container’s width. If the container’s height is smaller than the scaled image’s height,the image will be cropped vertically.
Here’s how it works:
- The image is scaled so its width matches the container’s width.
- The height is adjusted proportionally.
- If the resulting height exceeds the container’s height, the image is cropped from the top and bottom.
Use Cases for fit-width:
- Responsive Images: Ensuring images always fill the available width without distortion.
- Image Galleries: maintaining consistent image widths in a grid layout.
- Background Images: Scaling background images to cover the width of a section.
object-fit: fit-height
fit-height, conversely, scales the image to fit the height of its container. The image’s width is adjusted proportionally. The image is scaled until its height matches the container’s height. If the container’s width is smaller than the scaled image’s width, the image will be cropped horizontally.
Here’s how it works:
- The image is scaled so its height matches the container’s height.
- The width is adjusted proportionally.
- If the resulting width exceeds the container’s width, the image is cropped from the left and right.
Use Cases for fit-height:
- Fixed-Height Containers: Fitting images into containers with a predefined height.
- Vertical Layouts: Maintaining consistent image heights in a vertical arrangement.
- Specific Design Requirements: When you need an image to precisely fill a container’s height, even if it means cropping the width.
Key Differences Summarized
The core difference lies in the dimension they prioritize. fit-width prioritizes width, potentially cropping the height, while fit-height prioritizes height, potentially cropping the width.
Comparison Table
| Feature | fit-width |
fit-height |
|---|---|---|
| Prioritized Dimension | width | Height |
| Aspect Ratio | Maintained | Maintained |
| Potential Cropping | vertical (Top/Bottom) | Horizontal (Left/Right) |
| Best Use Case | Responsive layouts, consistent image widths | Fixed-height containers, consistent image heights |
FAQ
- What happens if the container’s aspect ratio doesn’t match the image’s aspect ratio?
- The image will be cropped to fit.
fit-widthcrops vertically, andfit-heightcrops horizontally. - Can I use
fit-widthorfit-heightwith otherobject-fitvalues? - No,
fit-widthandfit-heightare specific values *of* theobject-fitproperty, not values to be combined with it. - What if I don’t specify
object-fit?Keep reading