Zhang Guang in “Dad and Me” said: “I can’t live without my daughter, and I don’t feel good with my son”… Why?

“Father and Me” Zhang Guang and Zhang Ying. Photo | TV Chosun

Although Jang Kwang of “Actor 10 Million” admitted that relationship problems between him and his son have existed for a long time, host Jeon Hyun-woo said with concern, “This is the biggest challenge for the family who has appeared on the show so far.”

In TV Chosun’s “Dad and I,” which aired on the 10th, Jang Kwang, a voice actor for 46 years and an actor for 13 years, will appear as the new “representative dad.” Jang Kwang is the head of a famous “celebrity family” including his wife Jeon Seong-ae (an actress), daughter Mi-ja (a comedian), and son Jang Young (who is pursuing an acting career).

Zhang Guang said of his daughter, “She is an indispensable person” and that she is an “indispensable best friend” to the point that they can tell each other everything. On the other hand, speaking of his son, he said, “We are not very close. He does not have a very good affection for me,” questioning the long-standing affection between father and son.

Zhang Guang’s son Zhang Ying has been an actor for 12 years, working in theater and broadcasting. However, Zhang Guang said, “My son is a new actor. This point has not been emphasized yet,” expressing dissatisfaction with his son’s long life in obscurity.

Zhang Ying also said, “I don’t show my face to my father. “We didn’t talk much when we were young, and it’s still the same now,” he said, explaining the uncomfortable relationship between father and son. Even when Zhang Guang and his wife met at home, they passed each other without saying a word, and even when the family talked together, Zhang Ying appeared alone in the distance. “I always spend a lot of time alone and with the three of us,” Zhang Ying said. “I’m used to it now.”

“He wasn’t like that to my sister, but he was very aggressive to me,” Jang said of her father. “He was a very scary person to me,” he said, “and I heard a lot of hurtful stories[from my father]. “From criticism of performances, I also heard things like, ‘There are people who are more handsome than you, who have better acting skills, and they’re tougher,’ ” he admitted. He confessed the hurt he felt inside, saying that such harsh words piled up and made him feel like “I was a person who didn’t know what to do with anything.”

An incident occurred in which emotions between father and son erupted, and the atmosphere became even more tense. Zhang Ying said, “Would I steal my dad’s medicine?” “I’ve been suspected several times,” he expressed his anger. Zhang Guang responded to this by saying, “I’m really tired,” and said, “So I try not to talk to my son.”

Zhang Ying went out, as if everything that had been accumulating had exploded, and Zhang Guang mightn’t understand his son’s attitude, saying, “Would he really react like this?” What happened to Zhang Guang and his father and why they were so conflicted will be revealed in “Dad and I”.

“Dad and Me” will be broadcast at 10 pm on the 10th.

[Yang So-young Star Today reporter]

Understanding the

Element in HTML

The `

` element is a fundamental building block in HTML, serving as a container for other HTML elements. It’s a versatile tool that enables you to structure and style your web pages effectively. This comprehensive guide delves into the intricacies of the `

` element, exploring its purpose, attributes, and practical applications.

What is a `

` Element?

In essence, the `

` element represents a division or section within an HTML document. It’s a generic container that doesn’t inherently have any specific meaning or visual styling. The beauty of `

` lies in its adaptability, allowing you to define and organize content as needed. Imagine it as a blank canvas onto which you can paint your website’s structure.

Key Attributes of `

`

While the `

` element is simple in its core functionality, it does offer valuable attributes to enhance its usage:

1. `id` Attribute

The `id` attribute provides a unique identifier for a specific `

` element. This identifier allows you to target and style the element using CSS (Cascading Style Sheets) or manipulate it with JavaScript. Each `id` value must be unique within the HTML document.

Example:

<div id="main-content">
    <!-- Content goes here -->
</div>

2. `class` Attribute

The `class` attribute enables you to group multiple `

` elements together based on shared characteristics. You can assign a class name to elements that you want to style consistently. Unlike the `id` attribute, multiple elements can share the same class.

Example:

<div class="article-card">
    <!-- Content goes here -->
</div>

<div class="article-card">
    <!-- Content goes here -->
</div>

3. `style` Attribute (Inline Styling)

The `style` attribute allows you to apply inline CSS directly to a `

` element. While it offers flexibility, inline styling is generally discouraged for larger projects as it can make your code harder to maintain.

Example:

<div style="background-color: #f0f0f0; padding: 20px;">
    <!-- Content goes here -->
</div>

Practical Applications of `

`

The `

` element finds widespread use in web development, empowering you to:

1. Structural Organization

You can use `

` elements to divide your web page into logical sections. This enhances readability, maintainability, and overall page structure. For instance, you might have a `

` for the header, another for the main content area, and a final one for the footer.

2. Content Grouping

Group related content within `

` elements to facilitate styling and functionality. For example, you might enclose a series of blog posts within a `

` with a specific class to apply consistent formatting.

3. Layout and Positioning

Combined with CSS, `

` elements enable you to control the layout and positioning of content on your web page. You can use techniques like floating, positioning, and flexbox to achieve various design effects.

4. JavaScript Interaction

`

` elements serve as containers for JavaScript interactions. You can attach event listeners to `

` elements, manipulate their content, and dynamically modify their appearance using JavaScript.

Best Practices for Using `

`

To leverage the power of `

` effectively, adhere to these guidelines:

  • Semantic HTML: When possible, use more semantically meaningful elements like `
    `, `

    `, `

  • CSS Styling: Avoid excessive inline styling within `
    ` elements. Utilize external CSS stylesheets for a cleaner and more maintainable approach to styling.
  • Minimalism: Keep your `
    ` structure as simple and efficient as possible. Avoid nesting `

    ` elements unnecessarily.
  • Accessibility: Ensure your `
    ` elements are accessible by providing appropriate ARIA roles and attributes when necessary.

Conclusion

The `

` element is a ubiquitous component in HTML, offering flexibility and control over web page structure and presentation. By adhering to best practices and understanding its capabilities, you can harness the power of `

` to create engaging and well-organized websites.

Share:

Facebook
Twitter
Pinterest
LinkedIn

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.