我有以下用例并寻找正确的解决方案

时间:2016-06-15 07:50:35

标签: php html css html5 seo

嗨朋友们,我需要一个解决方案,对于元素img的属性宽度为100%的错误值:预期一个数字但是看到了%。为此

<div class="item">
    <img alt="" src="http://web4cinema.com/img/MainBannerImageDir/146494909736kabali-new-banner-web4cinema.jpg" width="100%">
</div>

1 个答案:

答案 0 :(得分:0)

您好,您可以在您的HTML中使用@IBAction func sendPressed(_ sender: AnyObject) { let content = UNMutableNotificationContent() content.categoryIdentifier = "awesomeNotification" content.title = "Hello" content.body = "What up?" content.sound = UNNotificationSound.default() // Deliver the notification in five seconds. let trigger = UNTimeIntervalNotificationTrigger(timeInterval: 5, repeats: false) let request = UNNotificationRequest(identifier: "FiveSecond", content: content, trigger: trigger) // Schedule the notification. let center = UNUserNotificationCenter.current() center.add(request) { (error) in print(error) } print("should have been added") } ,但只会让您的CSS陷入混乱。

尝试在您的css文件中执行此操作:

style="width: 100%"

img {
  max-width: 100%;
}

所以你不需要在你所有的img html标签中插入img { width: 100%; }

如果你想只使用宽度,你应该只插入px值或数字。

style="width: 100%"