/* Bright & Soft Theme Color Variables */
:root {
--bg-body: #f8fafc;
--bg-card: #ffffff;
--primary: #2563eb;
--primary-light: #eff6ff;
--primary-border: #bfdbfe;
--secondary: #0ea5e9;
--secondary-light: #f0f9ff;
--text-main: #1e293b;
--text-sub: #334155;
--accent-green: #10b981;
--accent-green-bg: #ecfdf5;
--accent-amber: #d97706;
--accent-amber-bg: #fffbebfb;
--border-color: #e2e8f0;
--radius-lg: 12px;
--radius-md: 8px;
--shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
--shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -1px rgba(0,0,0,0.04);
--shadow-hover: 0 10px 15px -3px rgba(37,99,235,0.1);
}
/* Container & Global Typography */
.post-container {
font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
max-width: 920px;
margin: 0 auto;
background-color: var(--bg-card);
padding: 40px;
color: var(--text-main);
line-height: 1.75;
border-radius: 16px;
border: 1px solid var(--border-color);
box-shadow: var(--shadow-md);
text-align: justify;
text-justify: inter-word;
hyphens: auto;
}
/* Header Card */
.topic-header {
background: linear-gradient(135deg, #e0f2fe 0%, #e0e7ff 100%);
border-left: 6px solid var(--primary);
padding: 28px 32px;
border-radius: var(--radius-lg);
margin-bottom: 35px;
text-align: left;
}
.topic-header h1 {
color: #1e3a8a;
font-size: 28px;
margin: 0 0 10px 0;
line-height: 1.3;
text-align: left;
}
.topic-meta {
display: flex;
gap: 10px;
flex-wrap: wrap;
margin-top: 12px;
}
.meta-tag {
background-color: #ffffff;
color: var(--primary);
padding: 4px 14px;
border-radius: 20px;
font-size: 13px;
font-weight: 600;
border: 1px solid var(--primary-border);
}
/* Headings */
h2 {
color: #0f172a;
font-size: 22px;
border-bottom: 2px solid var(--primary-light);
padding-bottom: 10px;
margin-top: 40px;
margin-bottom: 20px;
display: flex;
align-items: center;
gap: 12px;
text-align: left;
}
h2::before {
content: '';
width: 14px;
height: 14px;
background-color: var(--primary);
border-radius: 4px;
display: inline-block;
flex-shrink: 0;
}
p, li {
font-size: 15px;
color: var(--text-sub);
margin-bottom: 12px;
text-align: justify;
text-justify: inter-word;
}
ul, ol {
padding-left: 22px;
margin-bottom: 20px;
}
li {
margin-bottom: 8px;
}
/* Callout Boxes */
.callout-box {
padding: 18px 22px;
border-radius: var(--radius-md);
margin: 25px 0;
border-left: 4px solid;
text-align: justify;
text-justify: inter-word;
}
.callout-box.info {
background-color: var(--primary-light);
border-color: var(--primary);
color: #1e3a8a;
}
.callout-box.exam {
background-color: var(--accent-amber-bg);
border-color: var(--accent-amber);
color: #78350f;
}
.callout-title {
font-weight: 700;
margin-bottom: 6px;
display: block;
text-align: left;
}
/* Cards Layout */
.card-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin: 25px 0;
}
.tech-card {
border: 1px solid var(--border-color);
border-radius: var(--radius-lg);
padding: 22px;
background: #ffffff;
transition: all 0.25s ease;
box-shadow: var(--shadow-sm);
text-align: justify;
text-justify: inter-word;
}
.tech-card:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-hover);
border-color: var(--primary-border);
}
.card-title {
font-size: 18px;
font-weight: 700;
color: #1e293b;
margin-bottom: 12px;
display: flex;
justify-content: space-between;
align-items: center;
text-align: left;
}
.card-badge {
font-size: 11px;
padding: 3px 8px;
border-radius: 6px;
font-weight: 600;
}
/* Diagram Containers */
.diagram-wrapper {
background-color: #f8fafc;
border: 2px dashed #cbd5e1;
border-radius: var(--radius-lg);
padding: 25px 15px;
margin: 30px 0;
text-align: center;
}
.diagram-caption {
font-size: 13px;
font-weight: 700;
color: #475569;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 20px;
text-align: center;
}
/* Layered LCD Diagram */
.lcd-layers {
display: flex;
justify-content: center;
align-items: center;
gap: 8px;
flex-wrap: wrap;
}
.layer-box {
background-color: #ffffff;
border: 2px solid var(--primary-border);
border-radius: var(--radius-md);
padding: 12px 10px;
min-width: 100px;
font-size: 12px;
box-shadow: var(--shadow-sm);
text-align: center;
}
.layer-box.highlight {
background-color: #e0f2fe;
border-color: #0284c7;
font-weight: bold;
}
.layer-arrow {
color: var(--primary);
font-weight: bold;
}
/* Pixel Structure Grid */
.pixel-structure {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 15px;
max-width: 750px;
margin: 0 auto;
}
.matrix-box {
background-color: #ffffff;
border: 1px solid var(--border-color);
border-radius: var(--radius-md);
padding: 15px;
text-align: justify;
text-justify: inter-word;
}
.matrix-box h4 {
margin: 0 0 8px 0;
color: var(--primary);
font-size: 15px;
text-align: left;
}
/* Table Design */
.styled-table {
width: 100%;
border-collapse: collapse;
margin: 30px 0;
font-size: 14px;
border-radius: var(--radius-md);
overflow: hidden;
border: 1px solid var(--border-color);
}
.styled-table th {
background-color: var(--primary-light);
color: #1e40af;
text-align: left;
padding: 14px 18px;
font-weight: 700;
}
.styled-table td {
padding: 14px 18px;
border-bottom: 1px solid var(--border-color);
color: var(--text-sub);
text-align: justify;
text-justify: inter-word;
}
.styled-table tr:last-child td {
border-bottom: none;
}
.styled-table tr:hover {
background-color: #f8fafc;
}
/* Key Terms */
.key-term {
color: #0f172a;
font-weight: 600;
}
1. Introduction to Liquid Crystal Displays
A Liquid Crystal Display (LCD) is a flat-panel display technology that uses liquid crystals sandwiched between two sheets of polarizing material to control light transmission. Liquid crystals do not emit light directly; they rely on an external backlight source (CCFL or LED) to illuminate pixels on screen.
Core Operating Principle:
Applying electrical voltage changes the orientation of liquid crystal molecules, causing them to twist or untwist. This controls whether light passes through polarizers to create light or dark spots on screen.
Figure 1: Internal Construction Layers of an LCD Panel
Backlight (CCFL / LED)
➔
Rear Polarizer
➔
TFT Glass Substrate
➔
Liquid Crystal Layer
➔
Color Filter Substrate
➔
Front Polarizer
2. Matrix Addressing Technologies
1. Passive Matrix LCD (PMLCD)
Older Tech
Uses a grid of conductive rows and columns to supply voltage to liquid crystal cells.
- Slow pixel response times (causes mouse cursor ghosting).
- Low contrast ratio and narrow viewing angles.
- Pixels lose charge quickly as scanning moves along grid.
- Used in digital watches, calculators, and basic instruments.
2. Active Matrix TFT LCD (AMLCD)
Modern Standard
Embeds a tiny Thin-Film Transistor (TFT) and capacitor at every sub-pixel location.
- Fast response times suitable for high-speed video playback.
- Capacitors hold charge until the next refresh cycle.
- High brightness, sharp contrast, and wide viewing angles.
- Standard for PC monitors, laptops, and smartphones.
Figure 2: Active Matrix (TFT) Sub-pixel Control Structure
Signal Control Grid
Scan lines select rows, while data lines supply voltage levels directly to each pixel column independently.
TFT Transistor Component
Acts as an electronic switch to rapidly turn each individual pixel ON or OFF without affecting surrounding pixels.
Storage Capacitor
Stores electrical charge at the pixel cell, keeping it lit stably between screen refreshes.
3. Detailed Comparison: Conventional LCD vs. TFT LCD
| Parameter |
Standard / Passive LCD |
TFT Active Matrix LCD |
| Pixel Control |
Row and column intersections multiplexed without individual transistors on screen. |
Dedicated Thin-Film Transistor (TFT) and capacitor per sub-pixel. |
| Response Time |
Slow (~150 ms to 300 ms), resulting in visible motion blur and image ghosting. |
Fast (~1 ms to 8 ms), providing smooth frame transitions for dynamic content. |
| Contrast Ratio |
Low contrast ratio with washed-out, muted color reproduction. |
High contrast ratio with sharp visual depth and accurate color output. |
| Viewing Angles |
Narrow; image degrades and color shifts significantly from side viewing angles. |
Wide viewing angles (especially on modern In-Plane Switching TFT panels). |
| Power Efficiency |
Extremely low power consumption due to simple driving circuitry. |
Slightly higher power draw due to onboard active transistor matrix array. |
| Manufacturing Cost |
Inexpensive and easy to manufacture in simple display segment layouts. |
Higher manufacturing complexity and cost due to silicon glass fabrication. |
| Common Applications |
Calculators, simple digital multimeters, clocks, and industrial readouts. |
Desktop PC monitors, laptops, TVs, smartphones, and professional displays. |
4. Key Monitor Configuration Specifications
- Native Resolution: The fixed physical array of horizontal and vertical pixels (e.g., $1920 \times 1080$ Full HD). Running displays below native resolution results in blurred image scaling.
- Refresh Rate: The number of times the screen image updates per second, measured in Hertz (e.g., 60 Hz, 144 Hz). Higher rates deliver smoother motion.
- Response Time: The time required for a pixel to transition from one color or gray level to another, measured in milliseconds ($ms$). Lower values prevent ghosting.
- Aspect Ratio: The proportional relationship between screen width and height (e.g., $16:9$, $16:10$, $4:3$).
- Backlighting Types:
- CCFL (Cold Cathode Fluorescent Lamp): Older fluorescent tube backlighting requiring high AC voltage inverters; bulkier with higher power draw.
- LED (Light Emitting Diode): Modern DC-driven light source providing low power usage, thin profiles, superior contrast, and longer operating lifespans.
5. Common Monitor Faults & Diagnostic Steps
- Faint / Dark Display (Image visible under external light): Indicates a failed backlight unit (LED strip or CCFL tube) or a faulty inverter board supplying high voltage to CCFL lamps.
- Dead or Stuck Pixels: Individual sub-pixels failing to respond due to a damaged TFT transistor array.
- Dead Pixel: Permanently unlit, showing as a black dot on screen.
- Stuck Pixel: Permanently energized, showing as a solid red, green, or blue dot.
- Flickering Display: Unstable display interface cables (VGA, HDMI, DisplayPort), incorrect refresh rate settings, or failing power supply capacitors.
- No Display Signal: Verify cable connectivity, select the correct input source in the monitor's On-Screen Display (OSD) menu, and test graphics adapter output.
NCVT Exam Revision Points:
- LCD Full Form: Liquid Crystal Display
- TFT Full Form: Thin-Film Transistor
- TFT Role: Operates as an independent electronic switch for each individual sub-pixel in active matrix displays.
- Illumination Source: Liquid crystals emit no light on their own; they rely completely on CCFL or LED backlights.
- IPS Panel Technology: In-Plane Switching (IPS) is an advanced TFT arrangement that provides superior color fidelity and wide viewing angles up to 178 degrees.
0 Comments
If you have any doubts, please let me know