Menu
Your Cart

MSI PRO MP225 21.5" 100Hz IPS FHD Monitor

MSI PRO MP225 21.5" 100Hz IPS FHD Monitor
MSI PRO MP225 21.5" 100Hz IPS FHD Monitor
MSI PRO MP225 21.5" 100Hz IPS FHD Monitor
MSI PRO MP225 21.5" 100Hz IPS FHD Monitor
MSI PRO MP225 21.5" 100Hz IPS FHD Monitor
MSI PRO MP225 21.5" 100Hz IPS FHD Monitor
MSI PRO MP225 21.5" 100Hz IPS FHD Monitor
MSI PRO MP225 21.5" 100Hz IPS FHD Monitor
MSI PRO MP225 21.5" 100Hz IPS FHD Monitor
  • Price: TK 11,800/-
  • Stock: In Stock
  • Model: PRO MP225
TK 11,800/-
Ex Tax: TK 11,800/-

Key Features

    • Model: PRO MP225
    • Resolution: FHD (1920 x 1080)
    • Display: IPS, 100Hz, 1ms
    • Ports: 1x HDMI, 1x VGA, 1x Audio Out
    • Features: Anti-Flicker Technology, EYE-Q Check
    Specification
    Display Features
    Display Size21.5 inch
    Display TypeLED
    Panel TypeIPS
    ResolutionFull HD (1920 x 1080)
    Pixel pitch(MM)0.24795(H) x 0.24795V)
    Display SurfaceAnti-glare
    Aspect Ratio16:9
    Viewing Angle178°(H) / 178°(V)
    Brightness250 cd/m2
    Contrast Ratio1300:1
    Refresh Rate100Hz
    Color GamutCOLOR BIT: 8 bits (6 bits + FRC) sRGB: 107.39% (CIE 1976)
    Response Time1ms (MPRT) / 4ms (GTG)
    Connectivity
    HDMI1x HDMI TM 1.4b
    VGA1x D-Sub (VGA)
    Mechanical Design
    Tilt-5° ~ 20°
    Vesa Wall Mount75 x 75 mm
    Power
    Power ConsumptionExternal Adaptor 12V 2A
    VoltagePower Input : 100~240V , 50/60Hz
    Physical Attributes
    ColorBlack
    Dimensions489.4 x 384.8 x 182.3 mm (19.3 x 15.1 x 7.2 inch)
    Weight 2.3 kg (5.1 lbs)
    Warranty Information
    Warranty03 Years
    Description

    MSI PRO MP225 21.5" 100Hz IPS FHD Monitor

    The MSI PRO MP225 21.5" 100Hz IPS FHD Monitor is an excellent choice for professionals seeking high-quality visuals and smooth performance. With a Full HD (1920 x 1080) resolution, it delivers sharp and clear images, ensuring a comfortable viewing experience for office work, content creation, and multimedia tasks.

    Equipped with an IPS panel, this monitor offers vibrant colors and wide viewing angles, making it perfect for users who require accurate and consistent image quality. The 100Hz refresh rate and 1ms response time ensure fluid visuals, reducing motion blur and screen tearing for a seamless experience.

    For connectivity, the MSI PRO MP225 comes with 1x HDMI, 1x VGA, and 1x Audio Out, allowing easy integration with various devices. It also features Anti-Flicker Technology and EYE-Q Check, reducing eye strain and providing a comfortable viewing experience during extended usage.

    Buying Suggestion from Dear IT Solution

    Get the MSI PRO MP225 21.5" 100Hz IPS FHD Monitor at the best price in Bangladesh from Dear IT Solution. We ensure the best quality product insured in Bangladesh, providing you with a reliable and efficient display solution for both work and entertainment

    Review

    Write a review

    Note: HTML is not translated!
    Bad Good
    Critial Path: Hello world!
    Hello world!
    /** * @license * Copyright 2017 Google LLC * SPDX-License-Identifier: Apache-2.0 *//** * @fileoverview Diagnostic audit that lists all JavaScript libraries detected on the page */import {Audit} from '../audit.js'; import * as i18n from '../../lib/i18n/i18n.js';const UIStrings = { /** Title of a Lighthouse audit that provides detail on the Javascript libraries that are used on the page. */ title: 'Detected JavaScript libraries', /** Description of a Lighthouse audit that tells the user what this audit is detecting. This is displayed after a user expands the section to see more. No character length limits. */ description: 'All front-end JavaScript libraries detected on the page. [Learn more about this JavaScript library detection diagnostic audit](https://developer.chrome.com/docs/lighthouse/best-practices/js-libraries/).', /** Label for a column in a data table; entries will be the version numbers of the detected Javascript libraries. */ columnVersion: 'Version', };const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);class JsLibrariesAudit extends Audit { /** * @return {LH.Audit.Meta} */ static get meta() { return { id: 'js-libraries', title: str_(UIStrings.title), scoreDisplayMode: Audit.SCORING_MODES.INFORMATIVE, description: str_(UIStrings.description), requiredArtifacts: ['Stacks'], }; }/** * @param {LH.Artifacts} artifacts * @return {LH.Audit.Product} */ static audit(artifacts) { const libDetails = artifacts.Stacks .filter(stack => stack.detector === 'js') // Don't show the fast paths in the table. .filter(stack => !stack.id.endsWith('-fast')) .map(stack => ({ name: stack.name, version: stack.version, npm: stack.npm, }));/** @type {LH.Audit.Details.Table['headings']} */ const headings = [ {key: 'name', valueType: 'text', label: str_(i18n.UIStrings.columnName)}, {key: 'version', valueType: 'text', label: str_(UIStrings.columnVersion)}, ]; const details = Audit.makeTableDetails(headings, libDetails);const debugData = { type: /** @type {const} */ ('debugdata'), stacks: artifacts.Stacks.map(stack => { return { id: stack.id, version: stack.version, }; }), };if (!libDetails.length) { return {score: null, notApplicable: true}; }return { score: 1, // Always pass for now. details: { ...details, debugData, }, }; } }export default JsLibrariesAudit; export {UIStrings};