Support CoreUI Development

CoreUI is an MIT-licensed open source project and is completely free to use. However, the amount of effort needed to maintain and develop new features for the project is not sustainable without proper financial backing.

You can support our Open Source software development in the following ways:

  • Buy the CoreUI PRO, and get access to PRO components, and dedicated support.
  • Became a sponsor, and get your logo on BACKERS.md/README.md files or each site of this documentation
  • Give us a star ⭐️ on Github.

React Image Component

React image component with responsive behavior (so it's never become larger than their parent element) and special styles.

Other frameworks

CoreUI components are available as native Angular, Bootstrap (Vanilla JS), and Vue components. To learn more please visit the following pages.

Responsive images#

Images in CoreUI for React.js are made responsive with fluid property. This applies max-width: 100%; and height: auto; to the image so that it scales with the parent element.

1<CImage fluid src="/images/react.jpg" />

Image thumbnails#

In addition to our border-radius utilities, you can use propthumbnail to give an image a rounded 1px border appearance.

1<CImage rounded thumbnail src="/images/react400.jpg" width={200} height={200} />

Aligning images#

Align images with the align property.

1<div className="clearfix">
2 <CImage align="start" rounded src="/images/react400.jpg" width={200} height={200} />
3 <CImage align="end" rounded src="/images/react400.jpg" width={200} height={200} />
4</div>
1<div className="clearfix">
2 <CImage align="center" rounded src="/images/react400.jpg" width={200} height={200} />
3</div>
1<div className="text-center">
2 <CImage rounded src="/images/react400.jpg" width={200} height={200} />
3</div>

API#

CImage#

1import { CImage } from '@coreui/react'
2// or
3import CImage from '@coreui/react/src/components/image/CImage'
PropertyDescriptionTypeDefault
alignSet the horizontal aligment.'start' | 'center' | 'end'-
classNameA string of all className you want applied to the component.string-
fluidMake image responsive.boolean-
roundedMake image rounded.boolean-
thumbnailGive an image a rounded 1px border appearance.boolean-